diff --git a/src/main/java/hudson/scm/EnvVarsUtils.java b/src/main/java/hudson/scm/EnvVarsUtils.java
index a6bb7c3..fc88a0a 100644
--- a/src/main/java/hudson/scm/EnvVarsUtils.java
+++ b/src/main/java/hudson/scm/EnvVarsUtils.java
@@ -26,7 +26,11 @@
import hudson.EnvVars;
import hudson.Platform;
+import hudson.model.Hudson;
+import hudson.slaves.EnvironmentVariablesNodeProperty;
+
import java.io.File;
+import java.util.List;
import java.util.Map;
/**
@@ -35,15 +39,15 @@
public class EnvVarsUtils {
/**
- * Changes the behavior of {@link EnvVars#overrideAll(java.util.Map)} which
- * drops variables which have value a null or a 0-length value: This
- * implementation doesn't.
- *
- *
This is a fix for JENKINS-10045.
+ * Changes the behavior of {@link EnvVars#overrideAll(java.util.Map)} which drops variables which have value a null
+ * or a 0-length value: This implementation doesn't.
+ *
+ * This is a fix for JENKINS-10045.
+ *
*
* @see EnvVars#overrideAll(java.util.Map)
*/
- public static void overrideAll(EnvVars env, Map all) {
+ public static void overrideAll(EnvVars env, Map all) {
for (Map.Entry e : all.entrySet()) {
override(env, e.getKey(), e.getValue());
}
@@ -54,24 +58,23 @@
* @see EnvVars#override(java.lang.String, java.lang.String)
*/
private static void override(EnvVars env, String key, String value) {
- // this implementation doesn't drop empty variables (JENKINS-10045)
- //if(value == null || value.length() == 0) {
- // remove(key);
- // return;
- //}
-
+ // this implementation doesn't drop empty variables (JENKINS-10045)
+ // if(value == null || value.length() == 0) {
+ // remove(key);
+ // return;
+ // }
+
int idx = key.indexOf('+');
- if(idx > 0) {
+ if (idx > 0) {
String realKey = key.substring(0, idx);
String v = env.get(realKey);
- if(v == null) {
+ if (v == null) {
v = value;
- }
- else {
+ } else {
// EnvVars.platform is private with no getter, but we really need it
Platform platform = null;
try {
- platform = (Platform) EnvVars.class.getField("platform").get(env);
+ platform = (Platform)EnvVars.class.getField("platform").get(env);
} catch (Exception e) {
// nothing we can really do
}
@@ -86,4 +89,13 @@
env.put(key, value);
}
+ public static EnvVars getEnvVarsFromGlobalNodeProperties() {
+ List list = Hudson.getInstance().getGlobalNodeProperties()
+ .getAll(EnvironmentVariablesNodeProperty.class);
+ EnvVars envVars = new EnvVars();
+ for (EnvironmentVariablesNodeProperty environmentVariablesNodeProperty : list) {
+ envVars.putAll(environmentVariablesNodeProperty.getEnvVars().descendingMap());
+ }
+ return envVars;
+ }
}
diff --git a/src/main/java/hudson/scm/SubversionChangeLogSet.java b/src/main/java/hudson/scm/SubversionChangeLogSet.java
index 28de9f2..170b1b3 100644
--- a/src/main/java/hudson/scm/SubversionChangeLogSet.java
+++ b/src/main/java/hudson/scm/SubversionChangeLogSet.java
@@ -1,18 +1,18 @@
/*
* The MIT License
- *
+ *
* Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Erik Ramfelt
- *
+ *
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
- *
+ *
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
- *
+ *
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
@@ -23,10 +23,10 @@
*/
package hudson.scm;
+import hudson.EnvVars;
import hudson.Util;
import hudson.model.AbstractBuild;
import hudson.model.User;
-import hudson.scm.SubversionChangeLogSet.LogEntry;
import hudson.scm.SubversionSCM.ModuleLocation;
import java.io.IOException;
@@ -48,22 +48,24 @@
/**
* {@link ChangeLogSet} for Subversion.
- *
+ *
* @author Kohsuke Kawaguchi
*/
-public final class SubversionChangeLogSet extends ChangeLogSet {
+public final class SubversionChangeLogSet extends ChangeLogSet {
+
private final List logs;
/**
* @GuardedBy this
*/
- private Map revisionMap;
+ private Map revisionMap;
- /*package*/ SubversionChangeLogSet(AbstractBuild,?> build, List logs) {
+ /* package */SubversionChangeLogSet(AbstractBuild, ?> build, List logs) {
super(build);
this.logs = prepareChangeLogEntries(logs);
}
+ @Override
public boolean isEmptySet() {
return logs.isEmpty();
}
@@ -73,6 +75,7 @@
}
+ @Override
public Iterator iterator() {
return logs.iterator();
}
@@ -82,12 +85,13 @@
return "svn";
}
- public synchronized Map getRevisionMap() throws IOException {
- if(revisionMap==null)
+ public synchronized Map getRevisionMap() throws IOException {
+ if (revisionMap == null) {
revisionMap = SubversionSCM.parseRevisionFile(build);
+ }
return revisionMap;
}
-
+
private List prepareChangeLogEntries(List items) {
items = removeDuplicatedEntries(items);
// we want recent changes first
@@ -100,7 +104,7 @@
/**
* Removes duplicate entries, e.g. those coming form svn:externals.
- *
+ *
* @param items list of items
* @return filtered list without duplicated entries
*/
@@ -112,15 +116,20 @@
@Exported
public List getRevisions() throws IOException {
List r = new ArrayList();
- for (Map.Entry e : getRevisionMap().entrySet())
- r.add(new RevisionInfo(e.getKey(),e.getValue()));
+ for (Map.Entry e : getRevisionMap().entrySet()) {
+ r.add(new RevisionInfo(e.getKey(), e.getValue()));
+ }
return r;
}
- @ExportedBean(defaultVisibility=999)
+ @ExportedBean(defaultVisibility = 999)
public static final class RevisionInfo {
- @Exported public final String module;
- @Exported public final long revision;
+
+ @Exported
+ public final String module;
+ @Exported
+ public final long revision;
+
public RevisionInfo(String module, long revision) {
this.module = module;
this.revision = revision;
@@ -130,10 +139,11 @@
/**
* One commit.
*
- * Setter methods are public only so that the objects can be constructed from Digester.
- * So please consider this object read-only.
+ * Setter methods are public only so that the objects can be constructed from Digester. So please consider this
+ * object read-only.
*/
public static class LogEntry extends ChangeLogSet.Entry {
+
private int revision;
private User author;
private String date;
@@ -143,6 +153,7 @@
/**
* Gets the {@link SubversionChangeLogSet} to which this change set belongs.
*/
+ @Override
public SubversionChangeLogSet getParent() {
return (SubversionChangeLogSet)super.getParent();
}
@@ -157,10 +168,8 @@
/**
* Gets the revision of the commit.
- *
*
- * If the commit made the repository revision 1532, this
- * method returns 1532.
+ * If the commit made the repository revision 1532, this method returns 1532.
*/
@Exported
public int getRevision() {
@@ -170,7 +179,7 @@
public void setRevision(int revision) {
this.revision = revision;
}
-
+
@Override
public String getCommitId() {
return String.valueOf(revision);
@@ -178,34 +187,42 @@
@Override
public long getTimestamp() {
- return date!=null ? SVNDate.parseDate(date).getTime() : -1;
+ return date != null ? SVNDate.parseDate(date).getTime() : -1;
}
@Override
public User getAuthor() {
- if(author==null)
+ if (author == null) {
return User.getUnknown();
+ }
return author;
}
@Override
public Collection getAffectedPaths() {
return new AbstractList() {
+
+ @Override
public String get(int index) {
return preparePath(paths.get(index).value);
}
+
+ @Override
public int size() {
return paths.size();
}
};
}
-
+
private String preparePath(String path) {
SCM scm = getParent().build.getProject().getScm();
- if (!(scm instanceof SubversionSCM)) return path;
+ if (!(scm instanceof SubversionSCM)) {
+ return path;
+ }
ModuleLocation[] locations = ((SubversionSCM)scm).getLocations();
- for (int i = 0; i < locations.length; i++) {
- String commonPart = findCommonPart(locations[i].remote, path);
+ for (ModuleLocation location : locations) {
+ EnvVars env = EnvVarsUtils.getEnvVarsFromGlobalNodeProperties();
+ String commonPart = findCommonPart(location.getExpandedLocation(env).remote, path);
if (commonPart != null) {
if (path.startsWith("/")) {
path = path.substring(1);
@@ -219,7 +236,7 @@
}
return path;
}
-
+
private String findCommonPart(String folder, String filePath) {
if (folder == null || filePath == null) {
return null;
@@ -242,7 +259,7 @@
@Exported
public String getUser() {// digester wants read/write property, even though it never reads. Duh.
- return author!=null ? author.getDisplayName() : "unknown";
+ return author != null ? author.getDisplayName() : "unknown";
}
@Exported
@@ -254,7 +271,8 @@
this.date = date;
}
- @Override @Exported
+ @Override
+ @Exported
public String getMsg() {
return msg;
}
@@ -263,28 +281,29 @@
this.msg = msg;
}
- public void addPath( Path p ) {
+ public void addPath(Path p) {
p.entry = this;
paths.add(p);
}
/**
* Gets the files that are changed in this commit.
- * @return
- * can be empty but never null.
+ *
+ * @return can be empty but never null.
*/
@Exported
public List getPaths() {
return paths;
}
-
+
@Override
public Collection getAffectedFiles() {
- return paths;
+ return paths;
}
-
+
void finish() {
Collections.sort(paths, new Comparator() {
+
@Override
public int compare(Path o1, Path o2) {
String path1 = Util.fixNull(o1.getValue());
@@ -293,7 +312,7 @@
}
});
}
-
+
@Override
public boolean equals(Object o) {
if (this == o) {
@@ -303,7 +322,7 @@
return false;
}
- LogEntry that = (LogEntry) o;
+ LogEntry that = (LogEntry)o;
if (revision != that.revision) {
return false;
@@ -334,11 +353,12 @@
/**
* A file in a commit.
*
- * Setter methods are public only so that the objects can be constructed from Digester.
- * So please consider this object read-only.
+ * Setter methods are public only so that the objects can be constructed from Digester. So please consider this
+ * object read-only.
*/
- @ExportedBean(defaultVisibility=999)
+ @ExportedBean(defaultVisibility = 999)
public static class Path implements AffectedFile {
+
private LogEntry entry;
private char action;
private String value;
@@ -364,7 +384,7 @@
/**
* Path in the repository. Such as /test/trunk/foo.c
*/
- @Exported(name="file")
+ @Exported(name = "file")
public String getValue() {
return value;
}
@@ -372,27 +392,33 @@
/**
* Inherited from AffectedFile
*/
+ @Override
public String getPath() {
- return getValue();
+ return getValue();
}
-
+
public void setValue(String value) {
this.value = value;
}
+ @Override
@Exported
public EditType getEditType() {
- if( action=='A' )
+ if (action == 'A') {
return EditType.ADD;
- if( action=='D' )
+ }
+ if (action == 'D') {
return EditType.DELETE;
+ }
return EditType.EDIT;
}
}
private static final class ReverseByRevisionComparator implements Comparator, Serializable {
+
private static final long serialVersionUID = 1L;
+ @Override
public int compare(LogEntry a, LogEntry b) {
return b.getRevision() - a.getRevision();
}
diff --git a/src/main/java/hudson/scm/SubversionRepositoryStatus.java b/src/main/java/hudson/scm/SubversionRepositoryStatus.java
index 19c6ad4..818f992 100644
--- a/src/main/java/hudson/scm/SubversionRepositoryStatus.java
+++ b/src/main/java/hudson/scm/SubversionRepositoryStatus.java
@@ -1,9 +1,8 @@
package hudson.scm;
-import static java.util.logging.Level.FINE;
-import static java.util.logging.Level.FINER;
-import static java.util.logging.Level.WARNING;
+import static java.util.logging.Level.*;
import static javax.servlet.http.HttpServletResponse.SC_OK;
+import hudson.EnvVars;
import hudson.model.AbstractModelObject;
import hudson.model.AbstractProject;
import hudson.model.Hudson;
@@ -28,31 +27,33 @@
/**
* Per repository status.
- *
+ *
* @author Kohsuke Kawaguchi
* @see SubversionStatus
*/
public class SubversionRepositoryStatus extends AbstractModelObject {
+
public final UUID uuid;
public SubversionRepositoryStatus(UUID uuid) {
this.uuid = uuid;
}
+ @Override
public String getDisplayName() {
return uuid.toString();
}
+ @Override
public String getSearchUrl() {
return uuid.toString();
}
/**
* Notify the commit to this repository.
- *
*
- * Because this URL is not guarded, we can't really trust the data that's sent to us. But we intentionally
- * don't protect this URL to simplify post-commit script set up.
+ * Because this URL is not guarded, we can't really trust the data that's sent to us. But we intentionally don't
+ * protect this URL to simplify post-commit script set up.
*/
public void doNotifyCommit(StaplerRequest req, StaplerResponse rsp) throws ServletException, IOException {
requirePOST();
@@ -61,28 +62,31 @@
Set affectedPath = new HashSet();
String line;
BufferedReader r = new BufferedReader(req.getReader());
-
+
try {
- while((line=r.readLine())!=null) {
- if (LOGGER.isLoggable(FINER)) {
- LOGGER.finer("Reading line: "+line);
- }
- affectedPath.add(line.substring(4));
- if (line.startsWith("svnlook changed --revision ")) {
- String msg = "Expecting the output from the svnlook command but instead you just sent me the svnlook invocation command line: " + line;
- LOGGER.warning(msg);
- throw new IllegalArgumentException(msg);
- }
- }
+ while ((line = r.readLine()) != null) {
+ if (LOGGER.isLoggable(FINER)) {
+ LOGGER.finer("Reading line: " + line);
+ }
+ affectedPath.add(cropAffectedPathFromChangeInfo(line));
+ if (line.startsWith("svnlook changed --revision ")) {
+ String msg = "Expecting the output from the svnlook command but instead you just sent me the svnlook invocation command line: "
+ + line;
+ LOGGER.warning(msg);
+ throw new IllegalArgumentException(msg);
+ }
+ }
} finally {
- IOUtils.closeQuietly(r);
+ IOUtils.closeQuietly(r);
}
- if(LOGGER.isLoggable(FINE))
- LOGGER.fine("Change reported to Subversion repository "+uuid+" on "+affectedPath);
+ if (LOGGER.isLoggable(FINE)) {
+ LOGGER.fine("Change reported to Subversion repository " + uuid + " on " + affectedPath);
+ }
boolean scmFound = false, triggerFound = false, uuidFound = false, pathFound = false;
- // we can't reliably use req.getParameter() as it can try to parse the payload, which we've already consumed above.
+ // we can't reliably use req.getParameter() as it can try to parse the payload, which we've already consumed
+ // above.
// servlet container relies on Content-type to decide if it wants to parse the payload or not, and at least
// in case of Jetty, it doesn't check if the payload is
QueryParameterMap query = new QueryParameterMap(req);
@@ -97,62 +101,91 @@
}
}
- OUTER:
- for (AbstractProject,?> p : Hudson.getInstance().getAllItems(AbstractProject.class)) {
+ OUTER: for (AbstractProject, ?> p : Hudson.getInstance().getAllItems(AbstractProject.class)) {
try {
SCM scm = p.getScm();
- if (scm instanceof SubversionSCM) scmFound = true; else continue;
+ if (scm instanceof SubversionSCM) {
+ scmFound = true;
+ } else {
+ continue;
+ }
SCMTrigger trigger = p.getTrigger(SCMTrigger.class);
- if (trigger!=null) triggerFound = true; else continue;
+ if (trigger != null) {
+ triggerFound = true;
+ } else {
+ continue;
+ }
- SubversionSCM sscm = (SubversionSCM) scm;
+ EnvVars env = EnvVarsUtils.getEnvVarsFromGlobalNodeProperties();
+
+ SubversionSCM sscm = (SubversionSCM)scm;
for (ModuleLocation loc : sscm.getLocations()) {
- if (loc.getUUID(p).equals(uuid)) uuidFound = true; else continue;
+ if (loc.getUUID(p).equals(uuid)) {
+ uuidFound = true;
+ } else {
+ continue;
+ }
- String m = loc.getSVNURL().getPath();
+ String m = loc.getExpandedLocation(env).getSVNURL().getPath();
String n = loc.getRepositoryRoot(p).getPath();
- if(!m.startsWith(n)) continue; // repository root should be a subpath of the module path, but be defensive
+ if (!m.startsWith(n)) {
+ continue; // repository root should be a subpath of the module path, but be defensive
+ }
String remaining = m.substring(n.length());
- if(remaining.startsWith("/")) remaining=remaining.substring(1);
+ if (remaining.startsWith("/")) {
+ remaining = remaining.substring(1);
+ }
String remainingSlash = remaining + '/';
final RevisionParameterAction[] actions;
- if ( rev != -1 ) {
+ if (rev != -1) {
SvnInfo info[] = { new SvnInfo(loc.getURL(), rev) };
RevisionParameterAction action = new RevisionParameterAction(info);
- actions = new RevisionParameterAction[] {action};
+ actions = new RevisionParameterAction[] { action };
} else {
actions = new RevisionParameterAction[0];
}
for (String path : affectedPath) {
- if(path.equals(remaining) /*for files*/ || path.startsWith(remainingSlash) /*for dirs*/
- || remaining.length()==0/*when someone is checking out the whole repo (that is, m==n)*/) {
+ if (path.equals(remaining) /* for files */|| path.startsWith(remainingSlash) /* for dirs */
+ || remaining.length() == 0/* when someone is checking out the whole repo (that is, m==n) */) {
// this project is possibly changed. poll now.
// if any of the data we used was bogus, the trigger will not detect a change
- LOGGER.fine("Scheduling the immediate polling of "+p);
+ LOGGER.fine("Scheduling the immediate polling of " + p);
trigger.run(actions);
pathFound = true;
+
+ // trigger.run(new RevisionParameterAction[] { new RevisionParameterAction(new
+ // SvnInfo("http://grzsrctest01.infonova.at/testrepo/opennet/$OPENNET_RC", rev))});
continue OUTER;
}
}
}
} catch (SVNException e) {
- LOGGER.log(WARNING,"Failed to handle Subversion commit notification",e);
+ LOGGER.log(WARNING, "Failed to handle Subversion commit notification", e);
}
}
- if (!scmFound) LOGGER.warning("No subversion jobs found");
- else if (!triggerFound) LOGGER.warning("No subversion jobs using SCM polling");
- else if (!uuidFound) LOGGER.warning("No subversion jobs using repository: " + uuid);
- else if (!pathFound) LOGGER.fine("No jobs found matching the modified files");
+ if (!scmFound) {
+ LOGGER.warning("No subversion jobs found");
+ } else if (!triggerFound) {
+ LOGGER.warning("No subversion jobs using SCM polling");
+ } else if (!uuidFound) {
+ LOGGER.warning("No subversion jobs using repository: " + uuid);
+ } else if (!pathFound) {
+ LOGGER.fine("No jobs found matching the modified files");
+ }
rsp.setStatus(SC_OK);
}
+ private String cropAffectedPathFromChangeInfo(String line) {
+ return line.substring(1).trim();
+ }
+
private static final Logger LOGGER = Logger.getLogger(SubversionRepositoryStatus.class.getName());
}
diff --git a/src/main/java/hudson/scm/SubversionSCM.java b/src/main/java/hudson/scm/SubversionSCM.java
index 972ca27..9ee352f 100644
--- a/src/main/java/hudson/scm/SubversionSCM.java
+++ b/src/main/java/hudson/scm/SubversionSCM.java
@@ -1,21 +1,21 @@
/*
* The MIT License
- *
+ *
* Copyright (c) 2004-2012, Sun Microsystems, Inc., Kohsuke Kawaguchi, Fulvio Cavarretta,
* Jean-Baptiste Quenot, Luca Domenico Milanesio, Renaud Bruyeron, Stephen Connolly,
* Tom Huybrechts, Yahoo! Inc., Manufacture Francaise des Pneumatiques Michelin,
* Romain Seguy, OHTAKE Tomohiro
- *
+ *
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
- *
+ *
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
- *
+ *
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
@@ -27,10 +27,8 @@
package hudson.scm;
import static hudson.Util.fixEmptyAndTrim;
-import static hudson.scm.PollingResult.BUILD_NOW;
-import static hudson.scm.PollingResult.NO_CHANGES;
-import static java.util.logging.Level.FINE;
-import static java.util.logging.Level.WARNING;
+import static hudson.scm.PollingResult.*;
+import static java.util.logging.Level.*;
import hudson.EnvVars;
import hudson.Extension;
import hudson.FilePath;
@@ -56,14 +54,14 @@
import hudson.remoting.VirtualChannel;
import hudson.scm.PollingResult.Change;
import hudson.scm.UserProvidedCredential.AuthenticationManagerImpl;
-import hudson.scm.subversion.CheckoutUpdater;
import hudson.scm.subversion.Messages;
+import hudson.scm.subversion.UpdaterException;
+import hudson.scm.subversion.WorkspaceUpdaterDescriptor;
+import hudson.scm.subversion.CheckoutUpdater;
import hudson.scm.subversion.UpdateUpdater;
import hudson.scm.subversion.UpdateWithRevertUpdater;
-import hudson.scm.subversion.UpdaterException;
import hudson.scm.subversion.WorkspaceUpdater;
import hudson.scm.subversion.WorkspaceUpdater.UpdateTask;
-import hudson.scm.subversion.WorkspaceUpdaterDescriptor;
import hudson.util.EditDistance;
import hudson.util.FormValidation;
import hudson.util.LogTaskListener;
@@ -165,32 +163,26 @@
import com.trilead.ssh2.crypto.Base64;
/**
- * Subversion SCM.
- *
- *
Plugin Developer Notes
+ * Subversion SCM.
Plugin Developer Notes
*
- * Plugins that interact with Subversion can use {@link DescriptorImpl#createAuthenticationProvider(AbstractProject)}
- * so that it can use the credentials (username, password, etc.) that the user entered for Hudson.
- * See the javadoc of this method for the precautions you need to take if you run Subversion operations
- * remotely on slaves.
- *
+ * Plugins that interact with Subversion can use {@link DescriptorImpl#createAuthenticationProvider(AbstractProject)} so
+ * that it can use the credentials (username, password, etc.) that the user entered for Hudson. See the javadoc of this
+ * method for the precautions you need to take if you run Subversion operations remotely on slaves.
*
Implementation Notes
*
- * Because this instance refers to some other classes that are not necessarily
- * Java serializable (like {@link #browser}), remotable {@link FileCallable}s all
- * need to be declared as static inner classes.
- *
+ * Because this instance refers to some other classes that are not necessarily Java serializable (like {@link #browser}
+ * ), remotable {@link FileCallable}s all need to be declared as static inner classes.
+ *
* @author Kohsuke Kawaguchi
*/
public class SubversionSCM extends SCM implements Serializable {
+
/**
- * the locations field is used to store all configured SVN locations (with
- * their local and remote part). Direct access to this field should be
- * avoided and the getLocations() method should be used instead. This is
- * needed to make importing of old hudson-configurations possible as
- * getLocations() will check if the modules field has been set and import
- * the data.
- *
+ * the locations field is used to store all configured SVN locations (with their local and remote part). Direct
+ * access to this field should be avoided and the getLocations() method should be used instead. This is needed to
+ * make importing of old hudson-configurations possible as getLocations() will check if the modules field has been
+ * set and import the data.
+ *
* @since 1.91
*/
private ModuleLocation[] locations = new ModuleLocation[0];
@@ -200,7 +192,7 @@
private String includedRegions;
private String excludedUsers;
/**
- * Revision property names that are ignored for the sake of polling. Whitespace separated, possibly null.
+ * Revision property names that are ignored for the sake of polling. Whitespace separated, possibly null.
*/
private String excludedRevprop;
private String excludedCommitMessages;
@@ -221,77 +213,93 @@
/**
* @deprecated as of 1.286
*/
- public SubversionSCM(String[] remoteLocations, String[] localLocations,
- boolean useUpdate, SubversionRepositoryBrowser browser) {
- this(remoteLocations,localLocations, useUpdate, browser, null, null, null);
+ @Deprecated
+ public SubversionSCM(String[] remoteLocations, String[] localLocations, boolean useUpdate,
+ SubversionRepositoryBrowser browser) {
+ this(remoteLocations, localLocations, useUpdate, browser, null, null, null);
}
/**
* @deprecated as of 1.311
*/
- public SubversionSCM(String[] remoteLocations, String[] localLocations,
- boolean useUpdate, SubversionRepositoryBrowser browser, String excludedRegions) {
- this(ModuleLocation.parse(remoteLocations,localLocations), useUpdate, false, browser, excludedRegions, null, null, null);
+ @Deprecated
+ public SubversionSCM(String[] remoteLocations, String[] localLocations, boolean useUpdate,
+ SubversionRepositoryBrowser browser, String excludedRegions) {
+ this(ModuleLocation.parse(remoteLocations, localLocations), useUpdate, false, browser, excludedRegions, null,
+ null, null);
}
/**
* @deprecated as of 1.315
*/
- public SubversionSCM(String[] remoteLocations, String[] localLocations,
- boolean useUpdate, SubversionRepositoryBrowser browser, String excludedRegions, String excludedUsers, String excludedRevprop) {
- this(ModuleLocation.parse(remoteLocations,localLocations), useUpdate, false, browser, excludedRegions, excludedUsers, excludedRevprop, null);
+ @Deprecated
+ public SubversionSCM(String[] remoteLocations, String[] localLocations, boolean useUpdate,
+ SubversionRepositoryBrowser browser, String excludedRegions, String excludedUsers, String excludedRevprop) {
+ this(ModuleLocation.parse(remoteLocations, localLocations), useUpdate, false, browser, excludedRegions,
+ excludedUsers, excludedRevprop, null);
}
- /**
+ /**
* @deprecated as of 1.315
*/
- public SubversionSCM(List locations,
- boolean useUpdate, SubversionRepositoryBrowser browser, String excludedRegions) {
+ @Deprecated
+ public SubversionSCM(List locations, boolean useUpdate, SubversionRepositoryBrowser browser,
+ String excludedRegions) {
this(locations, useUpdate, false, browser, excludedRegions, null, null, null);
}
-
+
/**
* @deprecated as of 1.324
*/
- public SubversionSCM(List locations,
- boolean useUpdate, SubversionRepositoryBrowser browser, String excludedRegions, String excludedUsers, String excludedRevprop) {
+ @Deprecated
+ public SubversionSCM(List locations, boolean useUpdate, SubversionRepositoryBrowser browser,
+ String excludedRegions, String excludedUsers, String excludedRevprop) {
this(locations, useUpdate, false, browser, excludedRegions, excludedUsers, excludedRevprop, null);
}
/**
* @deprecated as of 1.328
*/
- public SubversionSCM(List locations,
- boolean useUpdate, SubversionRepositoryBrowser browser, String excludedRegions, String excludedUsers, String excludedRevprop, String excludedCommitMessages) {
- this(locations, useUpdate, false, browser, excludedRegions, excludedUsers, excludedRevprop, excludedCommitMessages);
+ @Deprecated
+ public SubversionSCM(List locations, boolean useUpdate, SubversionRepositoryBrowser browser,
+ String excludedRegions, String excludedUsers, String excludedRevprop, String excludedCommitMessages) {
+ this(locations, useUpdate, false, browser, excludedRegions, excludedUsers, excludedRevprop,
+ excludedCommitMessages);
}
/**
* @deprecated as of 1.xxx
*/
- public SubversionSCM(List locations,
- boolean useUpdate, boolean doRevert, SubversionRepositoryBrowser browser, String excludedRegions, String excludedUsers, String excludedRevprop, String excludedCommitMessages) {
- this(locations, useUpdate, doRevert, browser, excludedRegions, excludedUsers, excludedRevprop, excludedCommitMessages, null);
+ @Deprecated
+ public SubversionSCM(List locations, boolean useUpdate, boolean doRevert,
+ SubversionRepositoryBrowser browser, String excludedRegions, String excludedUsers, String excludedRevprop,
+ String excludedCommitMessages) {
+ this(locations, useUpdate, doRevert, browser, excludedRegions, excludedUsers, excludedRevprop,
+ excludedCommitMessages, null);
}
/**
- * @deprecated as of 1.23
+ * @deprecated as of 1.23
*/
- public SubversionSCM(List locations,
- boolean useUpdate, boolean doRevert, SubversionRepositoryBrowser browser, String excludedRegions, String excludedUsers, String excludedRevprop, String excludedCommitMessages,
- String includedRegions) {
- this(locations, useUpdate?(doRevert?new UpdateWithRevertUpdater():new UpdateUpdater()):new CheckoutUpdater(),
- browser, excludedRegions, excludedUsers, excludedRevprop, excludedCommitMessages, includedRegions);
+ @Deprecated
+ public SubversionSCM(List locations, boolean useUpdate, boolean doRevert,
+ SubversionRepositoryBrowser browser, String excludedRegions, String excludedUsers, String excludedRevprop,
+ String excludedCommitMessages, String includedRegions) {
+ this(locations, useUpdate ? (doRevert ? new UpdateWithRevertUpdater() : new UpdateUpdater())
+ : new CheckoutUpdater(), browser, excludedRegions, excludedUsers, excludedRevprop, excludedCommitMessages,
+ includedRegions);
}
@DataBoundConstructor
public SubversionSCM(List locations, WorkspaceUpdater workspaceUpdater,
- SubversionRepositoryBrowser browser, String excludedRegions, String excludedUsers, String excludedRevprop, String excludedCommitMessages,
- String includedRegions) {
+ SubversionRepositoryBrowser browser, String excludedRegions, String excludedUsers, String excludedRevprop,
+ String excludedCommitMessages, String includedRegions) {
for (Iterator itr = locations.iterator(); itr.hasNext();) {
ModuleLocation ml = itr.next();
String remote = Util.fixEmptyAndTrim(ml.remote);
- if(remote==null) itr.remove();
+ if (remote == null) {
+ itr.remove();
+ }
}
this.locations = locations.toArray(new ModuleLocation[locations.size()]);
@@ -308,44 +316,47 @@
* Convenience constructor, especially during testing.
*/
public SubversionSCM(String svnUrl) {
- this(svnUrl,".");
+ this(svnUrl, ".");
}
/**
* Convenience constructor, especially during testing.
*/
public SubversionSCM(String svnUrl, String local) {
- this(new String[]{svnUrl},new String[]{local},true,null,null,null,null);
+ this(new String[] { svnUrl }, new String[] { local }, true, null, null, null, null);
}
/**
- * @deprecated
- * as of 1.91. Use {@link #getLocations()} instead.
+ * @deprecated as of 1.91. Use {@link #getLocations()} instead.
*/
+ @Deprecated
public String getModules() {
return null;
}
/**
* list of all configured svn locations
- *
+ *
* @since 1.91
*/
@Exported
public ModuleLocation[] getLocations() {
- return getLocations(null, null);
+ return getLocations(null, null);
}
@Exported
public WorkspaceUpdater getWorkspaceUpdater() {
- if (workspaceUpdater!=null)
+ if (workspaceUpdater != null) {
return workspaceUpdater;
+ }
// data must have been read from old configuration.
- if (useUpdate!=null && !useUpdate)
+ if (useUpdate != null && !useUpdate) {
return new CheckoutUpdater();
- if (doRevert!=null && doRevert)
+ }
+ if (doRevert != null && doRevert) {
return new UpdateWithRevertUpdater();
+ }
return new UpdateUpdater();
}
@@ -355,23 +366,22 @@
/**
* @since 1.252
- * @deprecated Use {@link #getLocations(EnvVars, AbstractBuild)} for vars
- * expansion to be performed on all env vars rather than just
- * build parameters.
+ * @deprecated Use {@link #getLocations(EnvVars, AbstractBuild)} for vars expansion to be performed on all env vars
+ * rather than just build parameters.
*/
- public ModuleLocation[] getLocations(AbstractBuild,?> build) {
+ @Deprecated
+ public ModuleLocation[] getLocations(AbstractBuild, ?> build) {
return getLocations(null, build);
}
/**
- * List of all configured svn locations, expanded according to all env vars
- * or, if none defined, according to only build parameters values.
- *
+ * List of all configured svn locations, expanded according to all env vars or, if none defined, according to only
+ * build parameters values.
+ *
* @param env If non-null, variable expansions are performed against these vars
- * @param build If non-null (and if env is null), variable expansions are
- * performed against the build parameters
+ * @param build If non-null (and if env is null), variable expansions are performed against the build parameters
*/
- public ModuleLocation[] getLocations(EnvVars env, AbstractBuild,?> build) {
+ public ModuleLocation[] getLocations(EnvVars env, AbstractBuild, ?> build) {
// check if we've got a old location
if (modules != null) {
// import the old configuration
@@ -389,16 +399,16 @@
modules = null;
}
- if(env == null && build == null)
+ if (env == null && build == null) {
return locations;
+ }
ModuleLocation[] outLocations = new ModuleLocation[locations.length];
- if(env != null) {
+ if (env != null) {
for (int i = 0; i < outLocations.length; i++) {
outLocations[i] = locations[i].getExpandedLocation(env);
}
- }
- else {
+ } else {
for (int i = 0; i < outLocations.length; i++) {
outLocations[i] = locations[i].getExpandedLocation(build);
}
@@ -419,8 +429,8 @@
}
public String[] getExcludedRegionsNormalized() {
- return (excludedRegions == null || excludedRegions.trim().equals(""))
- ? null : excludedRegions.split("[\\r\\n]+");
+ return (excludedRegions == null || excludedRegions.trim().equals("")) ? null : excludedRegions
+ .split("[\\r\\n]+");
}
private Pattern[] getExcludedRegionsPatterns() {
@@ -445,8 +455,8 @@
}
public String[] getIncludedRegionsNormalized() {
- return (includedRegions == null || includedRegions.trim().equals(""))
- ? null : includedRegions.split("[\\r\\n]+");
+ return (includedRegions == null || includedRegions.trim().equals("")) ? null : includedRegions
+ .split("[\\r\\n]+");
}
private Pattern[] getIncludedRegionsPatterns() {
@@ -472,12 +482,14 @@
public Set getExcludedUsersNormalized() {
String s = fixEmptyAndTrim(excludedUsers);
- if (s==null)
+ if (s == null) {
return Collections.emptySet();
+ }
Set users = new HashSet();
- for (String user : s.split("[\\r\\n]+"))
+ for (String user : s.split("[\\r\\n]+")) {
users.add(user.trim());
+ }
return users;
}
@@ -488,7 +500,9 @@
private String getExcludedRevpropNormalized() {
String s = fixEmptyAndTrim(getExcludedRevprop());
- if (s!=null) return s;
+ if (s != null) {
+ return s;
+ }
return getDescriptor().getGlobalExcludedRevprop();
}
@@ -520,23 +534,23 @@
@Override
public void buildEnvVars(AbstractBuild, ?> build, Map env) {
super.buildEnvVars(build, env);
-
+
ModuleLocation[] svnLocations = getLocations(build);
try {
- Map revisions = parseRevisionFile(build);
- if(svnLocations.length==1) {
+ Map revisions = parseRevisionFile(build);
+ if (svnLocations.length == 1) {
Long rev = revisions.get(getUrlWithoutRevision(svnLocations[0].remote));
- if(rev!=null) {
- env.put("SVN_REVISION",rev.toString());
- env.put("SVN_URL",svnLocations[0].getURL());
+ if (rev != null) {
+ env.put("SVN_REVISION", rev.toString());
+ env.put("SVN_URL", svnLocations[0].getURL());
}
- } else if(svnLocations.length>1) {
- for(int i=0;i 1) {
+ for (int i = 0; i < svnLocations.length; i++) {
Long rev = revisions.get(getUrlWithoutRevision(svnLocations[i].remote));
- if(rev!=null) {
- env.put("SVN_REVISION_"+(i+1),rev.toString());
- env.put("SVN_URL_"+(i+1),svnLocations[i].getURL());
+ if (rev != null) {
+ env.put("SVN_REVISION_" + (i + 1), rev.toString());
+ env.put("SVN_URL_" + (i + 1), svnLocations[i].getURL());
}
}
}
@@ -549,8 +563,9 @@
/**
* Called after checkout/update has finished to compute the changelog.
*/
- private boolean calcChangeLog(AbstractBuild,?> build, File changelogFile, BuildListener listener, List externals, EnvVars env) throws IOException, InterruptedException {
- if(build.getPreviousBuild()==null) {
+ private boolean calcChangeLog(AbstractBuild, ?> build, File changelogFile, BuildListener listener,
+ List externals, EnvVars env) throws IOException, InterruptedException {
+ if (build.getPreviousBuild() == null) {
// nothing to compare against
return createEmptyChangeLog(changelogFile, listener, "log");
}
@@ -565,33 +580,33 @@
} finally {
os.close();
}
- if(!created)
+ if (!created) {
createEmptyChangeLog(changelogFile, listener, "log");
+ }
return true;
}
- /*package*/ static Map parseRevisionFile(AbstractBuild,?> build) throws IOException {
- return parseRevisionFile(build,false,false);
+ /* package */static Map parseRevisionFile(AbstractBuild, ?> build) throws IOException {
+ return parseRevisionFile(build, false, false);
}
/**
* Reads the revision file of the specified build (or the closest, if the flag is so specified.)
- *
- * @param findClosest
- * If true, this method will go back the build history until it finds a revision file.
- * A build may not have a revision file for any number of reasons (such as failure, interruption, etc.)
- * @return
- * map from {@link SvnInfo#url Subversion URL} to its revision. If there is more than one, choose
- * the one with the smallest revision number
+ *
+ * @param findClosest If true, this method will go back the build history until it finds a revision file. A build
+ * may not have a revision file for any number of reasons (such as failure, interruption, etc.)
+ * @return map from {@link SvnInfo#url Subversion URL} to its revision. If there is more than one, choose the one
+ * with the smallest revision number
*/
- /*package*/ static Map parseRevisionFile(AbstractBuild,?> build, boolean findClosest, boolean prunePinnedExternals) throws IOException {
- Map revisions = new HashMap(); // module -> revision
+ /* package */static Map parseRevisionFile(AbstractBuild, ?> build, boolean findClosest,
+ boolean prunePinnedExternals) throws IOException {
+ Map revisions = new HashMap(); // module -> revision
if (findClosest) {
- for (AbstractBuild,?> b=build; b!=null; b=b.getPreviousBuild()) {
- if(getRevisionFile(b).exists()) {
+ for (AbstractBuild, ?> b = build; b != null; b = b.getPreviousBuild()) {
+ if (getRevisionFile(b).exists()) {
build = b;
break;
}
@@ -600,44 +615,47 @@
{// read the revision file of the build
File file = getRevisionFile(build);
- if(!file.exists())
+ if (!file.exists()) {
// nothing to compare against
return revisions;
+ }
BufferedReader br = new BufferedReader(new FileReader(file));
try {
String line;
- while((line=br.readLine())!=null) {
- boolean isPinned = false;
- int indexLast = line.length();
- if (line.lastIndexOf("::p") == indexLast-3) {
- isPinned = true;
- indexLast -= 3;
- }
- int index = line.lastIndexOf('/');
- if(index<0) {
- continue; // invalid line?
+ while ((line = br.readLine()) != null) {
+ boolean isPinned = false;
+ int indexLast = line.length();
+ if (line.lastIndexOf("::p") == indexLast - 3) {
+ isPinned = true;
+ indexLast -= 3;
+ }
+ int index = line.lastIndexOf('/');
+ if (index < 0) {
+ continue; // invalid line?
}
try {
- String url = line.substring(0, index);
- long revision = Long.parseLong(line.substring(index+1,indexLast));
- Long oldRevision = revisions.get(url);
- if (isPinned) {
- if (!prunePinnedExternals) {
- if (oldRevision == null)
- // If we're writing pinned, only write if there are no unpinned
- revisions.put(url, revision);
- }
- } else {
- // unpinned
- if (oldRevision == null || oldRevision > revision)
- // For unpinned, take minimum
- revisions.put(url, revision);
- }
- } catch (NumberFormatException e) {
- // perhaps a corrupted line.
- LOGGER.log(WARNING, "Error parsing line " + line, e);
- }
+ String url = line.substring(0, index);
+ long revision = Long.parseLong(line.substring(index + 1, indexLast));
+ Long oldRevision = revisions.get(url);
+ if (isPinned) {
+ if (!prunePinnedExternals) {
+ if (oldRevision == null) {
+ // If we're writing pinned, only write if there are no unpinned
+ revisions.put(url, revision);
+ }
+ }
+ } else {
+ // unpinned
+ if (oldRevision == null || oldRevision > revision) {
+ // For unpinned, take minimum
+ revisions.put(url, revision);
+ }
+ }
+ } catch (NumberFormatException e) {
+ // perhaps a corrupted line.
+ LOGGER.log(WARNING, "Error parsing line " + line, e);
+ }
}
} finally {
br.close();
@@ -648,20 +666,17 @@
}
/**
- * Parses the file that stores the locations in the workspace where modules loaded by svn:external
- * is placed.
- *
+ * Parses the file that stores the locations in the workspace where modules loaded by svn:external is placed.
*
* Note that the format of the file has changed in 1.180 from simple text file to XML.
- *
- * @return
- * immutable list. Can be empty but never null.
+ *
+ * @return immutable list. Can be empty but never null.
*/
- /*package*/ static List parseExternalsFile(AbstractProject project) throws IOException {
+ /* package */static List parseExternalsFile(AbstractProject project) throws IOException {
File file = getExternalsFile(project);
- if(file.exists()) {
+ if (file.exists()) {
try {
- return (List)new XmlFile(External.XSTREAM,file).read();
+ return (List)new XmlFile(External.XSTREAM, file).read();
} catch (IOException e) {
// in < 1.180 this file was a text file, so it may fail to parse as XML,
// in which case let's just fall back
@@ -678,14 +693,16 @@
public boolean requiresWorkspaceForPolling() {
return false;
}
-
- public boolean checkout(AbstractBuild build, Launcher launcher, FilePath workspace, final BuildListener listener, File changelogFile) throws IOException, InterruptedException {
+
+ @Override
+ public boolean checkout(AbstractBuild build, Launcher launcher, FilePath workspace, final BuildListener listener,
+ File changelogFile) throws IOException, InterruptedException {
EnvVars env = build.getEnvironment(listener);
EnvVarsUtils.overrideAll(env, build.getBuildVariables());
List externals = null;
try {
- externals = checkout(build,workspace,listener,env);
+ externals = checkout(build, workspace, listener, env);
} catch (UpdaterException e) {
return false;
}
@@ -694,63 +711,67 @@
PrintWriter w = new PrintWriter(new FileOutputStream(getRevisionFile(build)));
try {
List pList = workspace.act(new BuildRevisionMapTask(build, this, listener, externals, env));
- List revList= new ArrayList(pList.size());
- for (SvnInfoP p: pList) {
- if (p.pinned)
- w.println( p.info.url +'/'+ p.info.revision + "::p");
- else
- w.println( p.info.url +'/'+ p.info.revision);
+ List revList = new ArrayList(pList.size());
+ for (SvnInfoP p : pList) {
+ if (p.pinned) {
+ w.println(p.info.url + '/' + p.info.revision + "::p");
+ } else {
+ w.println(p.info.url + '/' + p.info.revision);
+ }
revList.add(p.info);
}
- build.addAction(new SubversionTagAction(build,revList));
+ build.addAction(new SubversionTagAction(build, revList));
} finally {
w.close();
}
// write out the externals info
- new XmlFile(External.XSTREAM,getExternalsFile(build.getProject())).write(externals);
+ new XmlFile(External.XSTREAM, getExternalsFile(build.getProject())).write(externals);
return calcChangeLog(build, changelogFile, listener, externals, env);
}
/**
* Performs the checkout or update, depending on the configuration and workspace state.
- *
*
- * Use canonical path to avoid SVNKit/symlink problem as described in
- * https://wiki.svnkit.com/SVNKit_FAQ
- *
- * @return null
- * if the operation failed. Otherwise the set of local workspace paths
- * (relative to the workspace root) that has loaded due to svn:external.
+ * Use canonical path to avoid SVNKit/symlink problem as described in https://wiki.svnkit.com/SVNKit_FAQ
+ *
+ * @return null if the operation failed. Otherwise the set of local workspace paths (relative to the workspace root)
+ * that has loaded due to svn:external.
*/
- private List checkout(AbstractBuild build, FilePath workspace, TaskListener listener, EnvVars env) throws IOException, InterruptedException {
+ private List checkout(AbstractBuild build, FilePath workspace, TaskListener listener, EnvVars env)
+ throws IOException, InterruptedException {
if (repositoryLocationsNoLongerExist(build, listener, env)) {
Run lsb = build.getProject().getLastSuccessfulBuild();
- if (lsb != null && build.getNumber()-lsb.getNumber()>10
- && build.getTimestamp().getTimeInMillis()-lsb.getTimestamp().getTimeInMillis() > TimeUnit2.DAYS.toMillis(1)) {
+ if (lsb != null
+ && build.getNumber() - lsb.getNumber() > 10
+ && build.getTimestamp().getTimeInMillis() - lsb.getTimestamp().getTimeInMillis() > TimeUnit2.DAYS
+ .toMillis(1)) {
// Disable this project if the location doesn't exist any more, see issue #763
// but only do so if there was at least some successful build,
// to make sure that initial configuration error won't disable the build. see issue #1567
// finally, only disable a build if the failure persists for some time.
// see http://www.nabble.com/Should-Hudson-have-an-option-for-a-content-fingerprint--td24022683.html
- listener.getLogger().println("One or more repository locations do not exist anymore for " + build.getProject().getName() + ", project will be disabled.");
+ listener.getLogger().println(
+ "One or more repository locations do not exist anymore for " + build.getProject().getName()
+ + ", project will be disabled.");
build.getProject().makeDisabled(true);
return null;
}
}
-
+
List externals = new ArrayList();
for (ModuleLocation location : getLocations(env, build)) {
- externals.addAll( workspace.act(new CheckOutTask(build, this, location, build.getTimestamp().getTime(), listener, env)));
+ externals.addAll(workspace.act(new CheckOutTask(build, this, location, build.getTimestamp().getTime(),
+ listener, env)));
// olamy: remove null check at it cause test failure
- // see https://github.com/jenkinsci/subversion-plugin/commit/de23a2b781b7b86f41319977ce4c11faee75179b#commitcomment-1551273
- /*if ( externalsFound != null ){
- externals.addAll(externalsFound);
- } else {
- externals.addAll( new ArrayList( 0 ) );
- }*/
+ // see
+ // https://github.com/jenkinsci/subversion-plugin/commit/de23a2b781b7b86f41319977ce4c11faee75179b#commitcomment-1551273
+ /*
+ * if ( externalsFound != null ){ externals.addAll(externalsFound); } else { externals.addAll( new
+ * ArrayList( 0 ) ); }
+ */
}
return externals;
@@ -761,9 +782,11 @@
* Either run "svn co" or "svn up" equivalent.
*/
private static class CheckOutTask extends UpdateTask implements FileCallable> {
+
private final UpdateTask task;
- public CheckOutTask(AbstractBuild, ?> build, SubversionSCM parent, ModuleLocation location, Date timestamp, TaskListener listener, EnvVars env) {
+ public CheckOutTask(AbstractBuild, ?> build, SubversionSCM parent, ModuleLocation location, Date timestamp,
+ TaskListener listener, EnvVars env) {
this.authProvider = parent.getDescriptor().createAuthenticationProvider(build.getParent());
this.timestamp = timestamp;
this.listener = listener;
@@ -771,7 +794,8 @@
this.revisions = build.getAction(RevisionParameterAction.class);
this.task = parent.getWorkspaceUpdater().createTask();
}
-
+
+ @Override
public List invoke(File ws, VirtualChannel channel) throws IOException {
clientManager = createClientManager(authProvider);
manager = clientManager.getCore();
@@ -791,8 +815,8 @@
}
/**
- * This round-about way of executing the task ensures that the error-prone {@link #delegateTo(UpdateTask)} method
- * correctly copies everything.
+ * This round-about way of executing the task ensures that the error-prone {@link #delegateTo(UpdateTask)}
+ * method correctly copies everything.
*/
@Override
public List perform() throws IOException, InterruptedException {
@@ -803,16 +827,18 @@
try {
SVNDirEntry dir = clientManager.createRepository(location.getSVNURL(), true).info("/", -1);
if (dir != null) {// I don't think this can ever be null, but be defensive
- if (dir.getDate() != null && dir.getDate().after(new Date())) // see http://www.nabble.com/NullPointerException-in-SVN-Checkout-Update-td21609781.html that reported this being null.
+ if (dir.getDate() != null && dir.getDate().after(new Date())) // see
+ // http://www.nabble.com/NullPointerException-in-SVN-Checkout-Update-td21609781.html
+ // that reported this being null.
{
listener.getLogger().println(Messages.SubversionSCM_ClockOutOfSync());
}
}
} catch (SVNAuthenticationException e) {
// if we don't have access to '/', ignore. error
- LOGGER.log(Level.FINE,"Failed to estimate the remote time stamp",e);
+ LOGGER.log(Level.FINE, "Failed to estimate the remote time stamp", e);
} catch (SVNException e) {
- LOGGER.log(Level.INFO,"Failed to estimate the remote time stamp",e);
+ LOGGER.log(Level.INFO, "Failed to estimate the remote time stamp", e);
}
}
@@ -820,24 +846,20 @@
}
/**
- *
- * @deprecated as of 1.40
- * Use {@link #createClientManager(ISVNAuthenticationProvider)}
+ * @deprecated as of 1.40 Use {@link #createClientManager(ISVNAuthenticationProvider)}
*/
+ @Deprecated
public static SVNClientManager createSvnClientManager(ISVNAuthenticationProvider authProvider) {
return createClientManager(authProvider).getCore();
}
/**
* Creates {@link SVNClientManager}.
- *
*
* This method must be executed on the slave where svn operations are performed.
- *
- * @param authProvider
- * The value obtained from {@link DescriptorImpl#createAuthenticationProvider(AbstractProject)}.
- * If the operation runs on slaves,
- * (and properly remoted, if the svn operations run on slaves.)
+ *
+ * @param authProvider The value obtained from {@link DescriptorImpl#createAuthenticationProvider(AbstractProject)}.
+ * If the operation runs on slaves, (and properly remoted, if the svn operations run on slaves.)
*/
public static SvnClientManager createClientManager(ISVNAuthenticationProvider authProvider) {
ISVNAuthenticationManager sam = createSvnAuthenticationManager(authProvider);
@@ -846,12 +868,13 @@
/**
* Creates the {@link DefaultSVNOptions}.
- *
+ *
* @return the {@link DefaultSVNOptions}.
*/
public static DefaultSVNOptions createDefaultSVNOptions() {
DefaultSVNOptions defaultOptions = SVNWCUtil.createDefaultOptions(true);
- DescriptorImpl descriptor = Hudson.getInstance() == null ? null : Hudson.getInstance().getDescriptorByType(DescriptorImpl.class);
+ DescriptorImpl descriptor = Hudson.getInstance() == null ? null : Hudson.getInstance().getDescriptorByType(
+ DescriptorImpl.class);
if (defaultOptions != null && descriptor != null) {
defaultOptions.setAuthStorageEnabled(descriptor.isStoreAuthToDisk());
}
@@ -860,11 +883,12 @@
public static ISVNAuthenticationManager createSvnAuthenticationManager(ISVNAuthenticationProvider authProvider) {
File configDir;
- if (CONFIG_DIR!=null)
+ if (CONFIG_DIR != null) {
configDir = new File(CONFIG_DIR);
- else
+ } else {
configDir = SVNWCUtil.getDefaultConfigurationDirectory();
-
+ }
+
ISVNAuthenticationManager sam = SVNWCUtil.createDefaultAuthenticationManager(configDir, null, null);
sam.setAuthenticationProvider(authProvider);
SVNAuthStoreHandlerImpl.install(sam);
@@ -872,10 +896,9 @@
}
/**
- * @deprecated as of 2.0
- * Use {@link #createClientManager(AbstractProject)}
- *
+ * @deprecated as of 2.0 Use {@link #createClientManager(AbstractProject)}
*/
+ @Deprecated
public static SVNClientManager createSvnClientManager(AbstractProject context) {
return createClientManager(context).getCore();
}
@@ -884,14 +907,16 @@
* Creates {@link SVNClientManager} for code running on the master.
*
* CAUTION: this code only works when invoked on master. On slaves, use
- * {@link #createSvnClientManager(ISVNAuthenticationProvider)} and get {@link ISVNAuthenticationProvider}
- * from the master via remoting.
+ * {@link #createSvnClientManager(ISVNAuthenticationProvider)} and get {@link ISVNAuthenticationProvider} from the
+ * master via remoting.
*/
public static SvnClientManager createClientManager(AbstractProject context) {
- return new SvnClientManager(createSvnClientManager(Hudson.getInstance().getDescriptorByType(DescriptorImpl.class).createAuthenticationProvider(context)));
+ return new SvnClientManager(createSvnClientManager(Hudson.getInstance()
+ .getDescriptorByType(DescriptorImpl.class).createAuthenticationProvider(context)));
}
public static final class SvnInfo implements Serializable, Comparable {
+
/**
* Decoded repository URL.
*/
@@ -904,29 +929,40 @@
}
public SvnInfo(SVNInfo info) {
- this( info.getURL().toDecodedString(), info.getCommittedRevision().getNumber() );
+ this(info.getURL().toDecodedString(), info.getCommittedRevision().getNumber());
}
public SVNURL getSVNURL() throws SVNException {
return SVNURL.parseURIDecoded(url);
}
+ @Override
public int compareTo(SvnInfo that) {
int r = this.url.compareTo(that.url);
- if(r!=0) return r;
+ if (r != 0) {
+ return r;
+ }
- if(this.revisionthat.revision) return +1;
+ if (this.revision < that.revision) {
+ return -1;
+ }
+ if (this.revision > that.revision) {
+ return +1;
+ }
return 0;
}
@Override
public boolean equals(Object o) {
- if (this == o) return true;
- if (o == null || getClass() != o.getClass()) return false;
+ if (this == o) {
+ return true;
+ }
+ if (o == null || getClass() != o.getClass()) {
+ return false;
+ }
- SvnInfo svnInfo = (SvnInfo) o;
- return revision==svnInfo.revision && url.equals(svnInfo.url);
+ SvnInfo svnInfo = (SvnInfo)o;
+ return revision == svnInfo.revision && url.equals(svnInfo.url);
}
@@ -934,13 +970,13 @@
public int hashCode() {
int result;
result = url.hashCode();
- result = 31 * result + (int) (revision ^ (revision >>> 32));
+ result = 31 * result + (int)(revision ^ (revision >>> 32));
return result;
}
@Override
public String toString() {
- return String.format("%s (rev.%s)",url,revision);
+ return String.format("%s (rev.%s)", url, revision);
}
private static final long serialVersionUID = 1L;
@@ -950,6 +986,7 @@
* {@link SvnInfo} plus a flag if the revision is fixed.
*/
private static final class SvnInfoP implements Serializable {
+
/**
* SvnInfo with an indicator boolean indicating whether this is a pinned external
*/
@@ -960,6 +997,7 @@
this.info = info;
this.pinned = pinned;
}
+
private static final long serialVersionUID = 1L;
}
@@ -967,8 +1005,9 @@
* Information about svn:external
*/
public static final class External implements Serializable {
+
/**
- * Relative path within the workspace where this svn:exteranls exist.
+ * Relative path within the workspace where this svn:exteranls exist.
*/
public final String path;
@@ -978,19 +1017,18 @@
public final String url;
/**
- * If the svn:external link is with the -r option, its number.
- * Otherwise -1 to indicate that the head revision of the external repository should be fetched.
+ * If the svn:external link is with the -r option, its number. Otherwise -1 to indicate that the head revision
+ * of the external repository should be fetched.
*/
public final long revision;
/**
- * @param modulePath
- * The root of the current module that svn was checking out when it hits 'ext'.
- * Since we call svnkit multiple times in general case to check out from multiple locations,
- * we use this to make the path relative to the entire workspace, not just the particular module.
+ * @param modulePath The root of the current module that svn was checking out when it hits 'ext'. Since we call
+ * svnkit multiple times in general case to check out from multiple locations, we use this to make
+ * the path relative to the entire workspace, not just the particular module.
*/
- public External(String modulePath,SVNExternal ext) {
- this.path = modulePath+'/'+ext.getPath();
+ public External(String modulePath, SVNExternal ext) {
+ this.path = modulePath + '/' + ext.getPath();
this.url = ext.getResolvedURL().toDecodedString();
this.revision = ext.getRevision().getNumber();
}
@@ -999,23 +1037,22 @@
* Returns true if this reference is to a fixed revision.
*/
public boolean isRevisionFixed() {
- return revision!=-1;
+ return revision != -1;
}
private static final long serialVersionUID = 1L;
private static final XStream XSTREAM = new XStream2();
static {
- XSTREAM.alias("external",External.class);
+ XSTREAM.alias("external", External.class);
}
}
/**
* Gets the SVN metadata for the remote repository.
- *
- * @param remoteUrl
- * The target to run "svn info".
+ *
+ * @param remoteUrl The target to run "svn info".
*/
private static SVNInfo parseSvnInfo(SVNURL remoteUrl, ISVNAuthenticationProvider authProvider) throws SVNException {
final SvnClientManager manager = createClientManager(authProvider);
@@ -1028,25 +1065,26 @@
}
/**
- * Checks .svn files in the workspace and finds out revisions of the modules
- * that the workspace has.
- *
- * @return
- * null if the parsing somehow fails. Otherwise a map from the repository URL to revisions.
+ * Checks .svn files in the workspace and finds out revisions of the modules that the workspace has.
+ *
+ * @return null if the parsing somehow fails. Otherwise a map from the repository URL to revisions.
*/
private static class BuildRevisionMapTask implements FileCallable> {
+
private final ISVNAuthenticationProvider authProvider;
private final TaskListener listener;
private final List externals;
private final ModuleLocation[] locations;
- public BuildRevisionMapTask(AbstractBuild, ?> build, SubversionSCM parent, TaskListener listener, List externals, EnvVars env) {
+ public BuildRevisionMapTask(AbstractBuild, ?> build, SubversionSCM parent, TaskListener listener,
+ List externals, EnvVars env) {
this.authProvider = parent.getDescriptor().createAuthenticationProvider(build.getParent());
this.listener = listener;
this.externals = externals;
this.locations = parent.getLocations(env, build);
}
+ @Override
public List invoke(File ws, VirtualChannel channel) throws IOException {
List revisions = new ArrayList();
@@ -1054,20 +1092,22 @@
try {
final SVNWCClient svnWc = manager.getWCClient();
// invoke the "svn info"
- for( ModuleLocation module : locations ) {
+ for (ModuleLocation module : locations) {
try {
- SvnInfo info = new SvnInfo(svnWc.doInfo(new File(ws,module.getLocalDir()), SVNRevision.WORKING));
+ SvnInfo info = new SvnInfo(
+ svnWc.doInfo(new File(ws, module.getLocalDir()), SVNRevision.WORKING));
revisions.add(new SvnInfoP(info, false));
} catch (SVNException e) {
- e.printStackTrace(listener.error("Failed to parse svn info for "+module.remote));
+ e.printStackTrace(listener.error("Failed to parse svn info for " + module.remote));
}
}
- for(External ext : externals){
+ for (External ext : externals) {
try {
- SvnInfo info = new SvnInfo(svnWc.doInfo(new File(ws,ext.path),SVNRevision.WORKING));
+ SvnInfo info = new SvnInfo(svnWc.doInfo(new File(ws, ext.path), SVNRevision.WORKING));
revisions.add(new SvnInfoP(info, ext.isRevisionFixed()));
} catch (SVNException e) {
- e.printStackTrace(listener.error("Failed to parse svn info for external "+ext.url+" at "+ext.path));
+ e.printStackTrace(listener.error("Failed to parse svn info for external " + ext.url + " at "
+ + ext.path));
}
}
@@ -1076,6 +1116,7 @@
manager.dispose();
}
}
+
private static final long serialVersionUID = 1L;
}
@@ -1083,50 +1124,51 @@
* Gets the file that stores the revision.
*/
public static File getRevisionFile(AbstractBuild build) {
- return new File(build.getRootDir(),"revision.txt");
+ return new File(build.getRootDir(), "revision.txt");
}
/**
* Gets the file that stores the externals.
*/
private static File getExternalsFile(AbstractProject project) {
- return new File(project.getRootDir(),"svnexternals.txt");
+ return new File(project.getRootDir(), "svnexternals.txt");
}
@Override
- public SCMRevisionState calcRevisionsFromBuild(AbstractBuild, ?> build, Launcher launcher, TaskListener listener) throws IOException, InterruptedException {
+ public SCMRevisionState calcRevisionsFromBuild(AbstractBuild, ?> build, Launcher launcher, TaskListener listener)
+ throws IOException, InterruptedException {
// exclude locations that are svn:external-ed with a fixed revision.
- Map wsRev = parseRevisionFile(build,true,true);
+ Map wsRev = parseRevisionFile(build, true, true);
return new SVNRevisionState(wsRev);
}
@Override
- protected PollingResult compareRemoteRevisionWith(AbstractProject,?> project, Launcher launcher, FilePath workspace, final TaskListener listener, SCMRevisionState _baseline) throws IOException, InterruptedException {
+ protected PollingResult compareRemoteRevisionWith(AbstractProject, ?> project, Launcher launcher,
+ FilePath workspace, final TaskListener listener, SCMRevisionState _baseline)
+ throws IOException, InterruptedException {
final SVNRevisionState baseline;
if (_baseline instanceof SVNRevisionState) {
baseline = (SVNRevisionState)_baseline;
- }
- else if (project.getLastBuild()!=null) {
+ } else if (project.getLastBuild() != null) {
baseline = (SVNRevisionState)calcRevisionsFromBuild(project.getLastBuild(), launcher, listener);
- }
- else {
+ } else {
baseline = new SVNRevisionState(null);
}
-
+
if (project.getLastBuild() == null) {
listener.getLogger().println(Messages.SubversionSCM_pollChanges_noBuilds());
return BUILD_NOW;
}
- AbstractBuild,?> lastCompletedBuild = project.getLastCompletedBuild();
+ AbstractBuild, ?> lastCompletedBuild = project.getLastCompletedBuild();
- if (lastCompletedBuild!=null) {
+ if (lastCompletedBuild != null) {
EnvVars env = lastCompletedBuild.getEnvironment(listener);
EnvVarsUtils.overrideAll(env, lastCompletedBuild.getBuildVariables());
+ env.putAll(EnvVarsUtils.getEnvVarsFromGlobalNodeProperties());
if (repositoryLocationsNoLongerExist(lastCompletedBuild, listener, env)) {
// Disable this project, see HUDSON-763
- listener.getLogger().println(
- Messages.SubversionSCM_pollChanges_locationsNoLongerExist(project));
+ listener.getLogger().println(Messages.SubversionSCM_pollChanges_locationsNoLongerExist(project));
project.makeDisabled(true);
return NO_CHANGES;
}
@@ -1135,15 +1177,14 @@
for (ModuleLocation loc : getLocations(env, lastCompletedBuild)) {
// baseline.revisions has URIdecoded URL
String url;
- try {
+ try {
url = loc.getSVNURL().toDecodedString();
} catch (SVNException ex) {
ex.printStackTrace(listener.error(Messages.SubversionSCM_pollChanges_exception(loc.getURL())));
return BUILD_NOW;
}
if (!baseline.revisions.containsKey(url)) {
- listener.getLogger().println(
- Messages.SubversionSCM_pollChanges_locationNotInWorkspace(url));
+ listener.getLogger().println(Messages.SubversionSCM_pollChanges_locationNotInWorkspace(url));
return BUILD_NOW;
}
}
@@ -1151,26 +1192,32 @@
// determine where to perform polling. prefer the node where the build happened,
// in case a cluster is non-uniform. see http://www.nabble.com/svn-connection-from-slave-only-td24970587.html
- VirtualChannel ch=null;
- Node n = lastCompletedBuild!=null ? lastCompletedBuild.getBuiltOn() : null;
+ VirtualChannel ch = null;
+ Node n = lastCompletedBuild != null ? lastCompletedBuild.getBuiltOn() : null;
if (POLL_FROM_MASTER) {
n = null;
}
- if (n!=null) {
+ if (n != null) {
Computer c = n.toComputer();
- if (c!=null) ch = c.getChannel();
+ if (c != null) {
+ ch = c.getChannel();
+ }
}
- if (ch==null) ch= MasterComputer.localChannel;
- final String nodeName = n!=null ? n.getNodeName() : "master";
+ if (ch == null) {
+ ch = MasterComputer.localChannel;
+ }
+ final String nodeName = n != null ? n.getNodeName() : "master";
final String projectName = project.getName();
final SVNLogHandler logHandler = new SVNLogHandler(listener);
// figure out the remote revisions
final ISVNAuthenticationProvider authProvider = getDescriptor().createAuthenticationProvider(project);
- return ch.call(new DelegatingCallable () {
+ return ch.call(new DelegatingCallable() {
+
private static final long serialVersionUID = 8200959096894789583L;
+ @Override
public ClassLoader getClassLoader() {
return Hudson.getInstance().getPluginManager().uberClassLoader;
}
@@ -1179,33 +1226,34 @@
* Computes {@link PollingResult}. Note that we allow changes that match the certain paths to be excluded,
* so
*/
+ @Override
public PollingResult call() throws IOException {
- listener.getLogger().println("Received SCM poll call on " + nodeName + " for " + projectName + " on " + DateFormat.getDateTimeInstance().format(new Date()) );
- final Map revs = new HashMap();
+ listener.getLogger().println(
+ "Received SCM poll call on " + nodeName + " for " + projectName + " on "
+ + DateFormat.getDateTimeInstance().format(new Date()));
+ final Map revs = new HashMap();
boolean changes = false;
boolean significantChanges = false;
- for (Map.Entry baselineInfo : baseline.revisions.entrySet()) {
+ for (Map.Entry baselineInfo : baseline.revisions.entrySet()) {
String url = baselineInfo.getKey();
long baseRev = baselineInfo.getValue();
/*
- If we fail to check the remote revision, assume there's no change.
- In this way, a temporary SVN server problem won't result in bogus builds,
- which will fail anyway. So our policy in the error handling in the polling
- is not to fire off builds. see HUDSON-6136.
+ * If we fail to check the remote revision, assume there's no change. In this way, a temporary SVN
+ * server problem won't result in bogus builds, which will fail anyway. So our policy in the error
+ * handling in the polling is not to fire off builds. see HUDSON-6136.
*/
revs.put(url, baseRev);
try {
final SVNURL svnurl = SVNURL.parseURIDecoded(url);
- long nowRev = new SvnInfo(parseSvnInfo(svnurl,authProvider)).revision;
+ long nowRev = new SvnInfo(parseSvnInfo(svnurl, authProvider)).revision;
- changes |= (nowRev>baseRev);
+ changes |= (nowRev > baseRev);
listener.getLogger().println(Messages.SubversionSCM_pollChanges_remoteRevisionAt(url, nowRev));
revs.put(url, nowRev);
// make sure there's a change and it isn't excluded
- if (logHandler.findNonExcludedChanges(svnurl,
- baseRev+1, nowRev, authProvider)) {
+ if (logHandler.findNonExcludedChanges(svnurl, baseRev + 1, nowRev, authProvider)) {
listener.getLogger().println(Messages.SubversionSCM_pollChanges_changedFrom(baseRev));
significantChanges = true;
}
@@ -1213,18 +1261,18 @@
e.printStackTrace(listener.error(Messages.SubversionSCM_pollChanges_exception(url)));
}
}
- assert revs.size()== baseline.revisions.size();
- return new PollingResult(baseline,new SVNRevisionState(revs),
- significantChanges ? Change.SIGNIFICANT : changes ? Change.INSIGNIFICANT : Change.NONE);
+ assert revs.size() == baseline.revisions.size();
+ return new PollingResult(baseline, new SVNRevisionState(revs), significantChanges ? Change.SIGNIFICANT
+ : changes ? Change.INSIGNIFICANT : Change.NONE);
}
});
}
/**
- * Goes through the changes between two revisions and see if all the changes
- * are excluded.
+ * Goes through the changes between two revisions and see if all the changes are excluded.
*/
private final class SVNLogHandler implements ISVNLogEntryHandler, Serializable {
+
private boolean changesFound = false;
private final TaskListener listener;
@@ -1245,23 +1293,30 @@
/**
* Checks it the revision range [from,to] has any changes that are not excluded via exclusions.
*/
- public boolean findNonExcludedChanges(SVNURL url, long from, long to, ISVNAuthenticationProvider authProvider) throws SVNException {
- if (from>to) return false; // empty revision range, meaning no change
+ public boolean findNonExcludedChanges(SVNURL url, long from, long to, ISVNAuthenticationProvider authProvider)
+ throws SVNException {
+ if (from > to) {
+ return false; // empty revision range, meaning no change
+ }
// if no exclusion rules are defined, don't waste time going through "svn log".
- if (!hasExclusionRule()) return true;
+ if (!hasExclusionRule()) {
+ return true;
+ }
final SvnClientManager manager = createClientManager(authProvider);
try {
- manager.getLogClient().doLog(url, null, SVNRevision.UNDEFINED,
- SVNRevision.create(from), // get log entries from the local revision + 1
- SVNRevision.create(to), // to the remote revision
- false, // Don't stop on copy.
- true, // Report paths.
- false, // Don't included merged revisions
- 0, // Retrieve log entries for unlimited number of revisions.
- null, // Retrieve all revprops
- this);
+ manager.getLogClient().doLog(url, null, SVNRevision.UNDEFINED, SVNRevision.create(from), // get log
+ // entries from
+ // the local
+ // revision + 1
+ SVNRevision.create(to), // to the remote revision
+ false, // Don't stop on copy.
+ true, // Report paths.
+ false, // Don't included merged revisions
+ 0, // Retrieve log entries for unlimited number of revisions.
+ null, // Retrieve all revprops
+ this);
} finally {
manager.dispose();
}
@@ -1273,19 +1328,19 @@
* Is there any exclusion rule?
*/
private boolean hasExclusionRule() {
- return excludedPatterns.length>0 || !excludedUsers.isEmpty() || excludedRevprop != null || excludedCommitMessages.length>0 || includedPatterns.length>0;
+ return excludedPatterns.length > 0 || !excludedUsers.isEmpty() || excludedRevprop != null
+ || excludedCommitMessages.length > 0 || includedPatterns.length > 0;
}
/**
- * Handles a log entry passed.
- * Check for log entries that should be excluded from triggering a build.
- * If an entry is not an entry that should be excluded, set changesFound to true
- *
- * @param logEntry an {@link org.tmatesoft.svn.core.SVNLogEntry} object
- * that represents per revision information
- * (committed paths, log message, etc.)
+ * Handles a log entry passed. Check for log entries that should be excluded from triggering a build. If an
+ * entry is not an entry that should be excluded, set changesFound to true
+ *
+ * @param logEntry an {@link org.tmatesoft.svn.core.SVNLogEntry} object that represents per revision information
+ * (committed paths, log message, etc.)
* @throws org.tmatesoft.svn.core.SVNException
*/
+ @Override
public void handleLogEntry(SVNLogEntry logEntry) throws SVNException {
if (checkLogEntry(logEntry)) {
changesFound = true;
@@ -1293,9 +1348,8 @@
}
/**
- * Checks if the given log entry should be considered for the purposes
- * of SCM polling.
- *
+ * Checks if the given log entry should be considered for the purposes of SCM polling.
+ *
* @return true if the should trigger polling, false otherwise
*/
private boolean checkLogEntry(SVNLogEntry logEntry) {
@@ -1303,8 +1357,8 @@
// If the entry includes the exclusion revprop, don't count it as a change
SVNProperties revprops = logEntry.getRevisionProperties();
if (revprops != null && revprops.containsName(excludedRevprop)) {
- listener.getLogger().println(Messages.SubversionSCM_pollChanges_ignoredRevision(
- logEntry.getRevision(),
+ listener.getLogger().println(
+ Messages.SubversionSCM_pollChanges_ignoredRevision(logEntry.getRevision(),
Messages.SubversionSCM_pollChanges_ignoredRevision_revprop(excludedRevprop)));
return false;
}
@@ -1313,8 +1367,8 @@
String author = logEntry.getAuthor();
if (excludedUsers.contains(author)) {
// If the author is an excluded user, don't count this entry as a change
- listener.getLogger().println(Messages.SubversionSCM_pollChanges_ignoredRevision(
- logEntry.getRevision(),
+ listener.getLogger().println(
+ Messages.SubversionSCM_pollChanges_ignoredRevision(logEntry.getRevision(),
Messages.SubversionSCM_pollChanges_ignoredRevision_author(author)));
return false;
}
@@ -1353,8 +1407,8 @@
// If no paths are included don't count this entry as a change
if (includedPaths.isEmpty()) {
- listener.getLogger().println(Messages.SubversionSCM_pollChanges_ignoredRevision(
- logEntry.getRevision(),
+ listener.getLogger().println(
+ Messages.SubversionSCM_pollChanges_ignoredRevision(logEntry.getRevision(),
Messages.SubversionSCM_pollChanges_ignoredRevision_noincpath()));
return false;
}
@@ -1374,8 +1428,8 @@
// If all included paths are in an excluded region, don't count this entry as a change
if (includedPaths.size() == excludedPaths.size()) {
- listener.getLogger().println(Messages.SubversionSCM_pollChanges_ignoredRevision(
- logEntry.getRevision(),
+ listener.getLogger().println(
+ Messages.SubversionSCM_pollChanges_ignoredRevision(logEntry.getRevision(),
Messages.SubversionSCM_pollChanges_ignoredRevision_path(Util.join(excludedPaths, ", "))));
return false;
}
@@ -1387,6 +1441,7 @@
private static final long serialVersionUID = 1L;
}
+ @Override
public ChangeLogParser createChangeLogParser() {
return new SubversionChangeLogParser();
}
@@ -1403,8 +1458,9 @@
@Override
@Deprecated
public FilePath getModuleRoot(FilePath workspace) {
- if (getLocations().length > 0)
+ if (getLocations().length > 0) {
return workspace.child(getLocations()[0].getLocalDir());
+ }
return workspace;
}
@@ -1426,8 +1482,9 @@
throw new RuntimeException(e);
}
- if (getLocations().length > 0)
+ if (getLocations().length > 0) {
return _getModuleRoot(workspace, getLocations()[0].getLocalDir(), env);
+ }
return workspace;
}
@@ -1444,13 +1501,13 @@
}
return new FilePath[] { getModuleRoot(workspace) };
}
-
+
@Override
public FilePath[] getModuleRoots(FilePath workspace, @SuppressWarnings("rawtypes") AbstractBuild build) {
if (build == null) {
return getModuleRoots(workspace);
}
-
+
// TODO: can't I get the build listener here?
TaskListener listener = new LogTaskListener(LOGGER, WARNING);
final EnvVars env;
@@ -1462,7 +1519,7 @@
Thread.currentThread().interrupt();
throw new RuntimeException(e);
}
-
+
final ModuleLocation[] moduleLocations = getLocations();
if (moduleLocations.length > 0) {
FilePath[] moduleRoots = new FilePath[moduleLocations.length];
@@ -1476,22 +1533,21 @@
}
FilePath _getModuleRoot(FilePath workspace, String localDir, EnvVars env) {
- return workspace.child(
- env.expand(localDir));
+ return workspace.child(env.expand(localDir));
}
private static String getLastPathComponent(String s) {
String[] tokens = s.split("/");
- return tokens[tokens.length-1]; // return the last token
+ return tokens[tokens.length - 1]; // return the last token
}
@Extension
public static class DescriptorImpl extends SCMDescriptor implements hudson.model.ModelObject {
+
/**
- * SVN authentication realm to its associated credentials.
- * This is the global credential repository.
+ * SVN authentication realm to its associated credentials. This is the global credential repository.
*/
- private final Map credentials = new Hashtable();
+ private final Map credentials = new Hashtable();
/**
* Stores name of Subversion revision property to globally exclude
@@ -1501,35 +1557,33 @@
private int workspaceFormat = SVNAdminAreaFactory.WC_FORMAT_14;
/**
- * When set to true, repository URLs will be validated up to the first
- * dollar sign which is encountered.
+ * When set to true, repository URLs will be validated up to the first dollar sign which is encountered.
*/
private boolean validateRemoteUpToVar = false;
/**
* When set to {@code false}, then auth details will never be stored on disk.
+ *
* @since 1.27
*/
private boolean storeAuthToDisk = true;
/**
* Stores {@link SVNAuthentication} for a single realm.
- *
*
- * {@link Credential} holds data in a persistence-friendly way,
- * and it's capable of creating {@link SVNAuthentication} object,
- * to be passed to SVNKit.
+ * {@link Credential} holds data in a persistence-friendly way, and it's capable of creating
+ * {@link SVNAuthentication} object, to be passed to SVNKit.
*/
public static abstract class Credential implements Serializable {
+
/**
- *
+ *
*/
private static final long serialVersionUID = -3707951427730113110L;
/**
- * @param kind
- * One of the constants defined in {@link ISVNAuthenticationManager},
- * indicating what subtype of {@link SVNAuthentication} is expected.
+ * @param kind One of the constants defined in {@link ISVNAuthenticationManager}, indicating what subtype of
+ * {@link SVNAuthentication} is expected.
*/
public abstract SVNAuthentication createSVNAuthentication(String kind) throws SVNException;
}
@@ -1538,8 +1592,9 @@
* Username/password based authentication.
*/
public static final class PasswordCredential extends Credential {
+
/**
- *
+ *
*/
private static final long serialVersionUID = -1676145651108866745L;
private final String userName;
@@ -1552,10 +1607,11 @@
@Override
public SVNAuthentication createSVNAuthentication(String kind) {
- if(kind.equals(ISVNAuthenticationManager.SSH))
- return new SVNSSHAuthentication(userName,Scrambler.descramble(password),-1,false);
- else
- return new SVNPasswordAuthentication(userName,Scrambler.descramble(password),false);
+ if (kind.equals(ISVNAuthenticationManager.SSH)) {
+ return new SVNSSHAuthentication(userName, Scrambler.descramble(password), -1, false);
+ } else {
+ return new SVNPasswordAuthentication(userName, Scrambler.descramble(password), false);
+ }
}
}
@@ -1563,8 +1619,9 @@
* Public key authentication for Subversion over SSH.
*/
public static final class SshPublicKeyCredential extends Credential {
+
/**
- *
+ *
*/
private static final long serialVersionUID = -4649332611621900514L;
private final String userName;
@@ -1572,8 +1629,7 @@
private final String id;
/**
- * @param keyFile
- * stores SSH private key. The file will be copied.
+ * @param keyFile stores SSH private key. The file will be copied.
*/
public SshPublicKeyCredential(String userName, String passphrase, File keyFile) throws SVNException {
this.userName = userName;
@@ -1581,17 +1637,18 @@
Random r = new Random();
StringBuilder buf = new StringBuilder();
- for(int i=0;i<16;i++)
+ for (int i = 0; i < 16; i++) {
buf.append(Integer.toHexString(r.nextInt(16)));
+ }
this.id = buf.toString();
try {
File savedKeyFile = getKeyFile();
- FileUtils.copyFile(keyFile,savedKeyFile);
+ FileUtils.copyFile(keyFile, savedKeyFile);
setFilePermissions(savedKeyFile, "600");
} catch (IOException e) {
- throw new SVNException(
- SVNErrorMessage.create(SVNErrorCode.AUTHN_CREDS_UNAVAILABLE,"Unable to save private key").initCause(e));
+ throw new SVNException(SVNErrorMessage.create(SVNErrorCode.AUTHN_CREDS_UNAVAILABLE,
+ "Unable to save private key").initCause(e));
}
}
@@ -1599,13 +1656,13 @@
* Gets the location where the private key will be permanently stored.
*/
private File getKeyFile() {
- File dir = new File(Hudson.getInstance().getRootDir(),"subversion-credentials");
- if(dir.mkdirs()) {
+ File dir = new File(Hudson.getInstance().getRootDir(), "subversion-credentials");
+ if (dir.mkdirs()) {
// make sure the directory exists. if we created it, try to set the permission to 600
// since this is sensitive information
setFilePermissions(dir, "600");
}
- return new File(dir,id);
+ return new File(dir, id);
}
/**
@@ -1620,7 +1677,7 @@
chmod.execute();
} catch (BuildException e) {
// if we failed to set the permission, that's fine.
- LOGGER.log(Level.WARNING, "Failed to set permission of "+file,e);
+ LOGGER.log(Level.WARNING, "Failed to set permission of " + file, e);
return false;
}
@@ -1629,35 +1686,39 @@
@Override
public SVNSSHAuthentication createSVNAuthentication(String kind) throws SVNException {
- if(kind.equals(ISVNAuthenticationManager.SSH)) {
+ if (kind.equals(ISVNAuthenticationManager.SSH)) {
try {
Channel channel = Channel.current();
String privateKey;
- if(channel!=null) {
+ if (channel != null) {
// remote
- privateKey = channel.call(new Callable() {
+ privateKey = channel.call(new Callable() {
+
/**
- *
+ *
*/
private static final long serialVersionUID = -3088632649290496373L;
+ @Override
public String call() throws IOException {
- return FileUtils.readFileToString(getKeyFile(),"iso-8859-1");
+ return FileUtils.readFileToString(getKeyFile(), "iso-8859-1");
}
});
} else {
- privateKey = FileUtils.readFileToString(getKeyFile(),"iso-8859-1");
+ privateKey = FileUtils.readFileToString(getKeyFile(), "iso-8859-1");
}
- return new SVNSSHAuthentication(userName, privateKey.toCharArray(), Scrambler.descramble(passphrase),-1,false);
+ return new SVNSSHAuthentication(userName, privateKey.toCharArray(),
+ Scrambler.descramble(passphrase), -1, false);
} catch (IOException e) {
- throw new SVNException(
- SVNErrorMessage.create(SVNErrorCode.AUTHN_CREDS_UNAVAILABLE,"Unable to load private key").initCause(e));
+ throw new SVNException(SVNErrorMessage.create(SVNErrorCode.AUTHN_CREDS_UNAVAILABLE,
+ "Unable to load private key").initCause(e));
} catch (InterruptedException e) {
- throw new SVNException(
- SVNErrorMessage.create(SVNErrorCode.AUTHN_CREDS_UNAVAILABLE,"Unable to load private key").initCause(e));
+ throw new SVNException(SVNErrorMessage.create(SVNErrorCode.AUTHN_CREDS_UNAVAILABLE,
+ "Unable to load private key").initCause(e));
}
- } else
+ } else {
return null; // unknown
+ }
}
}
@@ -1665,8 +1726,9 @@
* SSL client certificate based authentication.
*/
public static final class SslClientCertificateCredential extends Credential {
+
/**
- *
+ *
*/
private static final long serialVersionUID = 5455755079546887446L;
private final Secret certificate;
@@ -1674,29 +1736,31 @@
public SslClientCertificateCredential(File certificate, String password) throws IOException {
this.password = Scrambler.scramble(password);
- this.certificate = Secret.fromString(new String(Base64.encode(FileUtils.readFileToByteArray(certificate))));
+ this.certificate = Secret.fromString(new String(Base64.encode(FileUtils
+ .readFileToByteArray(certificate))));
}
@Override
public SVNAuthentication createSVNAuthentication(String kind) {
- if(kind.equals(ISVNAuthenticationManager.SSL))
+ if (kind.equals(ISVNAuthenticationManager.SSL)) {
try {
- return new SVNSSLAuthentication(
- Base64.decode(certificate.getPlainText().toCharArray()),
- Scrambler.descramble(password),false);
+ return new SVNSSLAuthentication(Base64.decode(certificate.getPlainText().toCharArray()),
+ Scrambler.descramble(password), false);
} catch (IOException e) {
throw new Error(e); // can't happen
}
- else
+ } else {
return null; // unexpected authentication type
+ }
}
}
/**
- * Remoting interface that allows remote {@link ISVNAuthenticationProvider}
- * to read from local {@link DescriptorImpl#credentials}.
+ * Remoting interface that allows remote {@link ISVNAuthenticationProvider} to read from local
+ * {@link DescriptorImpl#credentials}.
*/
interface RemotableSVNAuthenticationProvider extends Serializable {
+
Credential getCredential(SVNURL url, String realm);
/**
@@ -1706,29 +1770,32 @@
}
/**
- * There's no point in exporting multiple {@link RemotableSVNAuthenticationProviderImpl} instances,
- * so let's just use one instance.
+ * There's no point in exporting multiple {@link RemotableSVNAuthenticationProviderImpl} instances, so let's
+ * just use one instance.
*/
private transient final RemotableSVNAuthenticationProviderImpl remotableProvider = new RemotableSVNAuthenticationProviderImpl();
private final class RemotableSVNAuthenticationProviderImpl implements RemotableSVNAuthenticationProvider {
+
/**
- *
+ *
*/
private static final long serialVersionUID = 1243451839093253666L;
+ @Override
public Credential getCredential(SVNURL url, String realm) {
for (SubversionCredentialProvider p : SubversionCredentialProvider.all()) {
- Credential c = p.getCredential(url,realm);
- if(c!=null) {
- LOGGER.fine(String.format("getCredential(%s)=>%s by %s",realm,c,p));
+ Credential c = p.getCredential(url, realm);
+ if (c != null) {
+ LOGGER.fine(String.format("getCredential(%s)=>%s by %s", realm, c, p));
return c;
}
}
- LOGGER.fine(String.format("getCredential(%s)=>%s",realm,credentials.get(realm)));
+ LOGGER.fine(String.format("getCredential(%s)=>%s", realm, credentials.get(realm)));
return credentials.get(realm);
}
+ @Override
public void acknowledgeAuthentication(String realm, Credential credential) {
// this notification is only used on the project-local store.
}
@@ -1745,6 +1812,7 @@
* See {@link DescriptorImpl#createAuthenticationProvider(AbstractProject)}.
*/
private static final class SVNAuthenticationProviderImpl implements ISVNAuthenticationProvider, ISVNAuthenticationOutcomeListener, Serializable {
+
/**
* Project-scoped authentication source. For historical reasons, can be null.
*/
@@ -1760,31 +1828,41 @@
*/
private Credential lastCredential;
- public SVNAuthenticationProviderImpl(RemotableSVNAuthenticationProvider local, RemotableSVNAuthenticationProvider global) {
+ public SVNAuthenticationProviderImpl(RemotableSVNAuthenticationProvider local,
+ RemotableSVNAuthenticationProvider global) {
this.global = global;
this.local = local;
}
- private SVNAuthentication fromProvider(SVNURL url, String realm, String kind, RemotableSVNAuthenticationProvider src, String debugName) throws SVNException {
- if (src==null) return null;
-
- Credential cred = src.getCredential(url,realm);
- LOGGER.fine(String.format("%s.requestClientAuthentication(%s,%s,%s)=>%s",debugName,kind,url,realm,cred));
+ private SVNAuthentication fromProvider(SVNURL url, String realm, String kind,
+ RemotableSVNAuthenticationProvider src, String debugName) throws SVNException {
+ if (src == null) {
+ return null;
+ }
+
+ Credential cred = src.getCredential(url, realm);
+ LOGGER.fine(String.format("%s.requestClientAuthentication(%s,%s,%s)=>%s", debugName, kind, url, realm,
+ cred));
this.lastCredential = cred;
- if(cred!=null) return cred.createSVNAuthentication(kind);
+ if (cred != null) {
+ return cred.createSVNAuthentication(kind);
+ }
return null;
}
- public SVNAuthentication requestClientAuthentication(String kind, SVNURL url, String realm, SVNErrorMessage errorMessage, SVNAuthentication previousAuth, boolean authMayBeStored) {
+ @Override
+ public SVNAuthentication requestClientAuthentication(String kind, SVNURL url, String realm,
+ SVNErrorMessage errorMessage, SVNAuthentication previousAuth, boolean authMayBeStored) {
try {
- SVNAuthentication auth=fromProvider(url,realm,kind,local,"local");
+ SVNAuthentication auth = fromProvider(url, realm, kind, local, "local");
// first try the local credential, then the global credential.
- if (auth==null || compareSVNAuthentications(auth,previousAuth))
- auth = fromProvider(url,realm,kind,global,"global");
+ if (auth == null || compareSVNAuthentications(auth, previousAuth)) {
+ auth = fromProvider(url, realm, kind, global, "global");
+ }
- if(previousAuth!=null && compareSVNAuthentications(auth,previousAuth)) {
+ if (previousAuth != null && compareSVNAuthentications(auth, previousAuth)) {
// See HUDSON-2909
// this comparison is necessary, unlike the original fix of HUDSON-2909, since SVNKit may use
// other ISVNAuthenticationProviders and their failed auth might be passed to us.
@@ -1793,26 +1871,31 @@
return null;
}
- if(auth==null && ISVNAuthenticationManager.USERNAME.equals(kind)) {
+ if (auth == null && ISVNAuthenticationManager.USERNAME.equals(kind)) {
// this happens with file:// URL and svn+ssh (in this case this method gets invoked twice.)
// The base class does this, too.
// user auth shouldn't be null.
- return new SVNUserNameAuthentication("",false);
+ return new SVNUserNameAuthentication("", false);
}
return auth;
} catch (SVNException e) {
- LOGGER.log(Level.SEVERE, "Failed to authorize",e);
- throw new RuntimeException("Failed to authorize",e);
+ LOGGER.log(Level.SEVERE, "Failed to authorize", e);
+ throw new RuntimeException("Failed to authorize", e);
}
}
- public void acknowledgeAuthentication(boolean accepted, String kind, String realm, SVNErrorMessage errorMessage, SVNAuthentication authentication) throws SVNException {
- if (accepted && local!=null && lastCredential!=null)
- local.acknowledgeAuthentication(realm,lastCredential);
+ @Override
+ public void acknowledgeAuthentication(boolean accepted, String kind, String realm,
+ SVNErrorMessage errorMessage, SVNAuthentication authentication) throws SVNException {
+ if (accepted && local != null && lastCredential != null) {
+ local.acknowledgeAuthentication(realm, lastCredential);
+ }
}
- public int acceptServerAuthentication(SVNURL url, String realm, Object certificate, boolean resultMayBeStored) {
+ @Override
+ public int acceptServerAuthentication(SVNURL url, String realm, Object certificate,
+ boolean resultMayBeStored) {
return ACCEPTED_TEMPORARY;
}
@@ -1830,9 +1913,10 @@
}
protected DescriptorImpl(Class clazz, Class extends RepositoryBrowser> repositoryBrowser) {
- super(clazz,repositoryBrowser);
+ super(clazz, repositoryBrowser);
}
+ @Override
public String getDisplayName() {
return "Subversion";
}
@@ -1842,8 +1926,9 @@
}
public int getWorkspaceFormat() {
- if (workspaceFormat==0)
+ if (workspaceFormat == 0) {
return SVNAdminAreaFactory.WC_FORMAT_14; // default
+ }
return workspaceFormat;
}
@@ -1857,8 +1942,7 @@
@Override
public boolean configure(StaplerRequest req, JSONObject formData) throws FormException {
- globalExcludedRevprop = fixEmptyAndTrim(
- req.getParameter("svn.global_excluded_revprop"));
+ globalExcludedRevprop = fixEmptyAndTrim(req.getParameter("svn.global_excluded_revprop"));
workspaceFormat = Integer.parseInt(req.getParameter("svn.workspaceFormat"));
validateRemoteUpToVar = formData.containsKey("validateRemoteUpToVar");
storeAuthToDisk = formData.containsKey("storeAuthToDisk");
@@ -1872,104 +1956,112 @@
@Override
public boolean isBrowserReusable(SubversionSCM x, SubversionSCM y) {
ModuleLocation[] xl = x.getLocations(), yl = y.getLocations();
- if (xl.length != yl.length) return false;
- for (int i = 0; i < xl.length; i++)
- if (!xl[i].getURL().equals(yl[i].getURL())) return false;
+ if (xl.length != yl.length) {
+ return false;
+ }
+ for (int i = 0; i < xl.length; i++) {
+ if (!xl[i].getURL().equals(yl[i].getURL())) {
+ return false;
+ }
+ }
return true;
}
/**
- * Creates {@link ISVNAuthenticationProvider} backed by {@link #credentials}.
- * This method must be invoked on the master, but the returned object is remotable.
- *
+ * Creates {@link ISVNAuthenticationProvider} backed by {@link #credentials}. This method must be invoked on the
+ * master, but the returned object is remotable.
*
- * Therefore, to access {@link ISVNAuthenticationProvider}, you need to call this method
- * on the master, then pass the object to the slave side, then call
+ * Therefore, to access {@link ISVNAuthenticationProvider}, you need to call this method on the master, then
+ * pass the object to the slave side, then call
* {@link SubversionSCM#createSvnClientManager(ISVNAuthenticationProvider)} on the slave.
- *
+ *
* @see SubversionSCM#createSvnClientManager(ISVNAuthenticationProvider)
*/
- public ISVNAuthenticationProvider createAuthenticationProvider(AbstractProject,?> inContextOf) {
- return new SVNAuthenticationProviderImpl(
- inContextOf==null ? null : new PerJobCredentialStore(inContextOf),remotableProvider);
+ public ISVNAuthenticationProvider createAuthenticationProvider(AbstractProject, ?> inContextOf) {
+ return new SVNAuthenticationProviderImpl(inContextOf == null ? null
+ : new PerJobCredentialStore(inContextOf), remotableProvider);
}
/**
- * @deprecated as of 1.18
- * Now that Hudson allows different credentials to be given in different jobs,
- * The caller should use {@link #createAuthenticationProvider(AbstractProject)} to indicate
- * the project in which the subversion operation is performed.
+ * @deprecated as of 1.18 Now that Hudson allows different credentials to be given in different jobs, The caller
+ * should use {@link #createAuthenticationProvider(AbstractProject)} to indicate the project in
+ * which the subversion operation is performed.
*/
+ @Deprecated
public ISVNAuthenticationProvider createAuthenticationProvider() {
- return new SVNAuthenticationProviderImpl(null,remotableProvider);
+ return new SVNAuthenticationProviderImpl(null, remotableProvider);
}
/**
* Submits the authentication info.
*/
- // TODO: stapler should do multipart/form-data handling
+ // TODO: stapler should do multipart/form-data handling
public void doPostCredential(StaplerRequest req, StaplerResponse rsp) throws IOException, ServletException {
Hudson.getInstance().checkPermission(Item.CONFIGURE);
-
+
MultipartFormDataParser parser = new MultipartFormDataParser(req);
// we'll record what credential we are trying here.
StringWriter log = new StringWriter();
PrintWriter logWriter = new PrintWriter(log);
- UserProvidedCredential upc = UserProvidedCredential.fromForm(req,parser);
+ UserProvidedCredential upc = UserProvidedCredential.fromForm(req, parser);
try {
postCredential(parser.get("url"), upc, logWriter);
rsp.sendRedirect("credentialOK");
} catch (SVNException e) {
- logWriter.println("FAILED: "+e.getErrorMessage());
- req.setAttribute("message",log.toString());
- req.setAttribute("pre",true);
- req.setAttribute("exception",e);
- rsp.forward(Hudson.getInstance(),"error",req);
+ logWriter.println("FAILED: " + e.getErrorMessage());
+ req.setAttribute("message", log.toString());
+ req.setAttribute("pre", true);
+ req.setAttribute("exception", e);
+ rsp.forward(Hudson.getInstance(), "error", req);
} finally {
upc.close();
}
}
/**
- * @deprecated as of 1.18
- * Use {@link #postCredential(AbstractProject, String, String, String, File, PrintWriter)}
+ * @deprecated as of 1.18 Use
+ * {@link #postCredential(AbstractProject, String, String, String, File, PrintWriter)}
*/
- public void postCredential(String url, String username, String password, File keyFile, PrintWriter logWriter) throws SVNException, IOException {
- postCredential(null,url,username,password,keyFile,logWriter);
+ @Deprecated
+ public void postCredential(String url, String username, String password, File keyFile, PrintWriter logWriter)
+ throws SVNException, IOException {
+ postCredential(null, url, username, password, keyFile, logWriter);
}
- public void postCredential(AbstractProject inContextOf, String url, String username, String password, File keyFile, PrintWriter logWriter) throws SVNException, IOException {
- postCredential(url,new UserProvidedCredential(username,password,keyFile,inContextOf),logWriter);
+ public void postCredential(AbstractProject inContextOf, String url, String username, String password,
+ File keyFile, PrintWriter logWriter) throws SVNException, IOException {
+ postCredential(url, new UserProvidedCredential(username, password, keyFile, inContextOf), logWriter);
}
/**
- * Submits the authentication info.
- *
- * This code is fairly ugly because of the way SVNKit handles credentials.
+ * Submits the authentication info. This code is fairly ugly because of the way SVNKit handles credentials.
*/
- public void postCredential(String url, final UserProvidedCredential upc, PrintWriter logWriter) throws SVNException, IOException {
+ public void postCredential(String url, final UserProvidedCredential upc, PrintWriter logWriter)
+ throws SVNException, IOException {
SVNRepository repository = null;
try {
// the way it works with SVNKit is that
// 1) svnkit calls AuthenticationManager asking for a credential.
- // this is when we can see the 'realm', which identifies the user domain.
+ // this is when we can see the 'realm', which identifies the user domain.
// 2) DefaultSVNAuthenticationManager returns the username and password we set below
// 3) if the authentication is successful, svnkit calls back acknowledgeAuthentication
- // (so we store the password info here)
+ // (so we store the password info here)
repository = SVNRepositoryFactory.create(SVNURL.parseURIDecoded(url));
- repository.setTunnelProvider( createDefaultSVNOptions() );
+ repository.setTunnelProvider(createDefaultSVNOptions());
AuthenticationManagerImpl authManager = upc.new AuthenticationManagerImpl(logWriter) {
+
@Override
protected void onSuccess(String realm, Credential cred) {
- LOGGER.info("Persisted "+cred+" for "+realm);
+ LOGGER.info("Persisted " + cred + " for " + realm);
credentials.put(realm, cred);
save();
- if (upc.inContextOf!=null)
- new PerJobCredentialStore(upc.inContextOf).acknowledgeAuthentication(realm,cred);
+ if (upc.inContextOf != null) {
+ new PerJobCredentialStore(upc.inContextOf).acknowledgeAuthentication(realm, cred);
+ }
}
};
@@ -1978,93 +2070,98 @@
repository.testConnection();
authManager.checkIfProtocolCompleted();
} finally {
- if (repository != null)
+ if (repository != null) {
repository.closeSession();
+ }
}
}
/**
* validate the value for a remote (repository) location.
*/
- public FormValidation doCheckRemote(StaplerRequest req, @AncestorInPath AbstractProject context, @QueryParameter String value) {
+ public FormValidation doCheckRemote(StaplerRequest req, @AncestorInPath AbstractProject context,
+ @QueryParameter String value) {
// syntax check first
String url = Util.fixEmptyAndTrim(value);
- if (url == null)
- return FormValidation.error(Messages.SubversionSCM_doCheckRemote_required());
+ if (url == null) {
+ return FormValidation.error(Messages.SubversionSCM_doCheckRemote_required());
+ }
- if(isValidateRemoteUpToVar()) {
+ if (isValidateRemoteUpToVar()) {
url = (url.indexOf('$') != -1) ? url.substring(0, url.indexOf('$')) : url;
}
- if(!URL_PATTERN.matcher(url).matches())
- return FormValidation.errorWithMarkup(
- Messages.SubversionSCM_doCheckRemote_invalidUrl());
+ if (!URL_PATTERN.matcher(url).matches()) {
+ return FormValidation.errorWithMarkup(Messages.SubversionSCM_doCheckRemote_invalidUrl());
+ }
// Test the connection only if we have job cuonfigure permission
- if (!Hudson.getInstance().hasPermission(Item.CONFIGURE))
+ if (!Hudson.getInstance().hasPermission(Item.CONFIGURE)) {
return FormValidation.ok();
+ }
try {
String urlWithoutRevision = getUrlWithoutRevision(url);
-
+
SVNURL repoURL = SVNURL.parseURIDecoded(urlWithoutRevision);
- if (checkRepositoryPath(context,repoURL)!=SVNNodeKind.NONE) {
+ if (checkRepositoryPath(context, repoURL) != SVNNodeKind.NONE) {
// something exists; now check revision if any
-
+
SVNRevision revision = getRevisionFromRemoteUrl(url);
if (revision != null && !revision.isValid()) {
return FormValidation.errorWithMarkup(Messages.SubversionSCM_doCheckRemote_invalidRevision());
}
-
+
return FormValidation.ok();
}
-
+
SVNRepository repository = null;
try {
- repository = getRepository(context,repoURL);
+ repository = getRepository(context, repoURL);
long rev = repository.getLatestRevision();
// now go back the tree and find if there's anything that exists
String repoPath = getRelativePath(repoURL, repository);
String p = repoPath;
- while(p.length()>0) {
+ while (p.length() > 0) {
p = SVNPathUtil.removeTail(p);
- if(repository.checkPath(p,rev)==SVNNodeKind.DIR) {
+ if (repository.checkPath(p, rev) == SVNNodeKind.DIR) {
// found a matching path
List entries = new ArrayList();
- repository.getDir(p,rev,false,entries);
+ repository.getDir(p, rev, false, entries);
// build up the name list
List paths = new ArrayList();
- for (SVNDirEntry e : entries)
- if(e.getKind()==SVNNodeKind.DIR)
+ for (SVNDirEntry e : entries) {
+ if (e.getKind() == SVNNodeKind.DIR) {
paths.add(e.getName());
+ }
+ }
String head = SVNPathUtil.head(repoPath.substring(p.length() + 1));
- String candidate = EditDistance.findNearest(head,paths);
+ String candidate = EditDistance.findNearest(head, paths);
- return FormValidation.error(
- Messages.SubversionSCM_doCheckRemote_badPathSuggest(p, head,
- candidate != null ? "/" + candidate : ""));
+ return FormValidation.error(Messages.SubversionSCM_doCheckRemote_badPathSuggest(p, head,
+ candidate != null ? "/" + candidate : ""));
}
}
- return FormValidation.error(
- Messages.SubversionSCM_doCheckRemote_badPath(repoPath));
+ return FormValidation.error(Messages.SubversionSCM_doCheckRemote_badPath(repoPath));
} finally {
- if (repository != null)
+ if (repository != null) {
repository.closeSession();
+ }
}
} catch (SVNException e) {
- LOGGER.log(Level.INFO, "Failed to access subversion repository "+url,e);
- String message = Messages.SubversionSCM_doCheckRemote_exceptionMsg1(
- Util.escape(url), Util.escape(e.getErrorMessage().getFullMessage()),
+ LOGGER.log(Level.INFO, "Failed to access subversion repository " + url, e);
+ String message = Messages.SubversionSCM_doCheckRemote_exceptionMsg1(Util.escape(url),
+ Util.escape(e.getErrorMessage().getFullMessage()),
"javascript:document.getElementById('svnerror').style.display='block';"
- + "document.getElementById('svnerrorlink').style.display='none';"
- + "return false;")
- + "
"
+ + Messages.SubversionSCM_doCheckRemote_exceptionMsg2("descriptorByName/"
+ + SubversionSCM.class.getName() + "/enterCredential?" + url);
return FormValidation.errorWithMarkup(message);
}
}
@@ -2073,15 +2170,16 @@
SVNRepository repository = null;
try {
- repository = getRepository(context,repoURL);
+ repository = getRepository(context, repoURL);
repository.testConnection();
long rev = repository.getLatestRevision();
String repoPath = getRelativePath(repoURL, repository);
return repository.checkPath(repoPath, rev);
} finally {
- if (repository != null)
+ if (repository != null) {
repository.closeSession();
+ }
}
}
@@ -2090,13 +2188,16 @@
ISVNAuthenticationManager sam = createSvnAuthenticationManager(createAuthenticationProvider(context));
sam = new FilterSVNAuthenticationManager(sam) {
+
// If there's no time out, the blocking read operation may hang forever, because TCP itself
// has no timeout. So always use some time out. If the underlying implementation gives us some
// value (which may come from ~/.subversion), honor that, as long as it sets some timeout value.
@Override
public int getReadTimeout(SVNRepository repository) {
int r = super.getReadTimeout(repository);
- if(r<=0) r = DEFAULT_TIMEOUT;
+ if (r <= 0) {
+ r = DEFAULT_TIMEOUT;
+ }
return r;
}
};
@@ -2105,10 +2206,12 @@
return repository;
}
-
+
public static String getRelativePath(SVNURL repoURL, SVNRepository repository) throws SVNException {
String repoPath = repoURL.getPath().substring(repository.getRepositoryRoot(false).getPath().length());
- if(!repoPath.startsWith("/")) repoPath="/"+repoPath;
+ if (!repoPath.startsWith("/")) {
+ repoPath = "/" + repoPath;
+ }
return repoPath;
}
@@ -2117,16 +2220,18 @@
*/
public FormValidation doCheckLocal(@QueryParameter String value) throws IOException, ServletException {
String v = Util.nullify(value);
- if (v == null)
+ if (v == null) {
// local directory is optional so this is ok
return FormValidation.ok();
+ }
v = v.trim();
// check if a absolute path has been supplied
// (the last check with the regex will match windows drives)
- if (v.startsWith("/") || v.startsWith("\\") || v.startsWith("..") || v.matches("^[A-Za-z]:.*"))
+ if (v.startsWith("/") || v.startsWith("\\") || v.startsWith("..") || v.matches("^[A-Za-z]:.*")) {
return FormValidation.error("absolute path is not allowed");
+ }
// all tests passed so far
return FormValidation.ok();
@@ -2136,12 +2241,13 @@
* Validates the excludeRegions Regex
*/
public FormValidation doCheckExcludedRegions(@QueryParameter String value) throws IOException, ServletException {
- for (String region : Util.fixNull(value).trim().split("[\\r\\n]+"))
+ for (String region : Util.fixNull(value).trim().split("[\\r\\n]+")) {
try {
Pattern.compile(region);
} catch (PatternSyntaxException e) {
return FormValidation.error("Invalid regular expression. " + e.getMessage());
}
+ }
return FormValidation.ok();
}
@@ -2149,12 +2255,12 @@
* Validates the includedRegions Regex
*/
public FormValidation doCheckIncludedRegions(@QueryParameter String value) throws IOException, ServletException {
- return doCheckExcludedRegions(value);
+ return doCheckExcludedRegions(value);
}
/**
- * Regular expression for matching one username. Matches 'windows' names ('DOMAIN\user') and
- * 'normal' names ('user'). Where user (and DOMAIN) has one or more characters in 'a-zA-Z_0-9')
+ * Regular expression for matching one username. Matches 'windows' names ('DOMAIN\user') and 'normal' names
+ * ('user'). Where user (and DOMAIN) has one or more characters in 'a-zA-Z_0-9')
*/
private static final Pattern USERNAME_PATTERN = Pattern.compile("(\\w+\\\\)?+(\\w+)");
@@ -2184,7 +2290,8 @@
/**
* Validates the excludeCommitMessages field
*/
- public FormValidation doCheckExcludedCommitMessages(@QueryParameter String value) throws IOException, ServletException {
+ public FormValidation doCheckExcludedCommitMessages(@QueryParameter String value)
+ throws IOException, ServletException {
for (String message : Util.fixNull(value).trim().split("[\\r\\n]+")) {
try {
Pattern.compile(message);
@@ -2198,40 +2305,47 @@
/**
* Validates the remote server supports custom revision properties
*/
- public FormValidation doCheckRevisionPropertiesSupported(@AncestorInPath AbstractProject context, @QueryParameter String value) throws IOException, ServletException {
+ public FormValidation doCheckRevisionPropertiesSupported(@AncestorInPath AbstractProject context,
+ @QueryParameter String value) throws IOException, ServletException {
String v = Util.fixNull(value).trim();
- if (v.length() == 0)
+ if (v.length() == 0) {
return FormValidation.ok();
+ }
// Test the connection only if we have admin permission
- if (!Hudson.getInstance().hasPermission(Hudson.ADMINISTER))
+ if (!Hudson.getInstance().hasPermission(Hudson.ADMINISTER)) {
return FormValidation.ok();
+ }
try {
SVNURL repoURL = SVNURL.parseURIDecoded(v);
- if (checkRepositoryPath(context,repoURL)!=SVNNodeKind.NONE)
+ if (checkRepositoryPath(context, repoURL) != SVNNodeKind.NONE) {
// something exists
return FormValidation.ok();
+ }
SVNRepository repository = null;
try {
- repository = getRepository(context,repoURL);
- if (repository.hasCapability(SVNCapability.LOG_REVPROPS))
+ repository = getRepository(context, repoURL);
+ if (repository.hasCapability(SVNCapability.LOG_REVPROPS)) {
return FormValidation.ok();
+ }
} finally {
- if (repository != null)
+ if (repository != null) {
repository.closeSession();
+ }
}
} catch (SVNException e) {
- String message="";
- message += "Unable to access "+Util.escape(v)+" : "+Util.escape( e.getErrorMessage().getFullMessage());
- LOGGER.log(Level.INFO, "Failed to access subversion repository "+v,e);
+ String message = "";
+ message += "Unable to access " + Util.escape(v) + " : "
+ + Util.escape(e.getErrorMessage().getFullMessage());
+ LOGGER.log(Level.INFO, "Failed to access subversion repository " + v, e);
return FormValidation.errorWithMarkup(message);
}
return FormValidation.warning(Messages.SubversionSCM_excludedRevprop_notSupported(v));
}
-
+
static {
new Initializer();
}
@@ -2241,26 +2355,26 @@
/**
* @deprecated 1.34
*/
- public boolean repositoryLocationsNoLongerExist(AbstractBuild,?> build, TaskListener listener) {
+ @Deprecated
+ public boolean repositoryLocationsNoLongerExist(AbstractBuild, ?> build, TaskListener listener) {
return repositoryLocationsNoLongerExist(build, listener, null);
}
-
+
/**
* @since 1.34
*/
- public boolean repositoryLocationsNoLongerExist(AbstractBuild,?> build, TaskListener listener, EnvVars env) {
+ public boolean repositoryLocationsNoLongerExist(AbstractBuild, ?> build, TaskListener listener, EnvVars env) {
PrintStream out = listener.getLogger();
- for (ModuleLocation l : getLocations(env, build))
+ for (ModuleLocation l : getLocations(env, build)) {
try {
- if (getDescriptor().checkRepositoryPath(build.getProject(), l.getSVNURL()) == SVNNodeKind.NONE) {
+ if (getDescriptor().checkRepositoryPath(build.getProject(), l.getExpandedLocation(env).getSVNURL()) == SVNNodeKind.NONE) {
out.println("Location '" + l.remote + "' does not exist");
ParametersAction params = build.getAction(ParametersAction.class);
if (params != null) {
// since this is used to disable projects, be conservative
- LOGGER.fine("Location could be expanded on build '" + build
- + "' parameters values:");
+ LOGGER.fine("Location could be expanded on build '" + build + "' parameters values:");
return false;
}
return true;
@@ -2268,8 +2382,9 @@
} catch (SVNException e) {
// be conservative, since we are just trying to be helpful in detecting
// non existent locations. If we can't detect that, we'll do nothing
- LOGGER.log(FINE, "Location check failed",e);
+ LOGGER.log(FINE, "Location check failed", e);
}
+ }
return false;
}
@@ -2278,30 +2393,35 @@
private static final long serialVersionUID = 1L;
// noop, but this forces the initializer to run.
- public static void init() {}
+ public static void init() {
+ }
static {
new Initializer();
}
private static final class Initializer {
+
static {
- if(Boolean.getBoolean("hudson.spool-svn"))
- DAVRepositoryFactory.setup(new DefaultHTTPConnectionFactory(null,true,null));
- else
- DAVRepositoryFactory.setup(); // http, https
- SVNRepositoryFactoryImpl.setup(); // svn, svn+xxx
- FSRepositoryFactory.setup(); // file
+ if (Boolean.getBoolean("hudson.spool-svn")) {
+ DAVRepositoryFactory.setup(new DefaultHTTPConnectionFactory(null, true, null));
+ } else {
+ DAVRepositoryFactory.setup(); // http, https
+ }
+ SVNRepositoryFactoryImpl.setup(); // svn, svn+xxx
+ FSRepositoryFactory.setup(); // file
// disable the connection pooling, which causes problems like
// http://www.nabble.com/SSH-connection-problems-p12028339.html
- if(System.getProperty("svnkit.ssh2.persistent")==null)
- System.setProperty("svnkit.ssh2.persistent","false");
+ if (System.getProperty("svnkit.ssh2.persistent") == null) {
+ System.setProperty("svnkit.ssh2.persistent", "false");
+ }
// push Negotiate to the end because it requires a valid Kerberos configuration.
// see HUDSON-8153
- if(System.getProperty("svnkit.http.methods")==null)
- System.setProperty("svnkit.http.methods","Digest,Basic,NTLM,Negotiate");
+ if (System.getProperty("svnkit.http.methods") == null) {
+ System.setProperty("svnkit.http.methods", "Digest,Basic,NTLM,Negotiate");
+ }
// use SVN1.4 compatible workspace by default.
SVNAdminAreaFactory.setSelector(new SubversionWorkspaceSelector());
@@ -2309,27 +2429,24 @@
}
/**
- * small structure to store local and remote (repository) location
- * information of the repository. As a addition it holds the invalid field
- * to make failure messages when doing a checkout possible
+ * small structure to store local and remote (repository) location information of the repository. As a addition it
+ * holds the invalid field to make failure messages when doing a checkout possible
*/
@ExportedBean
public static final class ModuleLocation implements Serializable {
+
/**
- * Subversion URL to check out.
- *
- * This may include "@NNN" at the end to indicate a fixed revision.
+ * Subversion URL to check out. This may include "@NNN" at the end to indicate a fixed revision.
*/
@Exported
public final String remote;
/**
- * Remembers the user-given value.
- * Can be null.
- *
- * @deprecated
- * Code should use {@link #getLocalDir()}. This field is only intended for form binding.
+ * Remembers the user-given value. Can be null.
+ *
+ * @deprecated Code should use {@link #getLocalDir()}. This field is only intended for form binding.
*/
+ @Deprecated
@Exported
public final String local;
@@ -2346,21 +2463,20 @@
}
/**
- * Local directory to place the file to.
- * Relative to the workspace root.
+ * Local directory to place the file to. Relative to the workspace root.
*/
public String getLocalDir() {
- if(local==null)
+ if (local == null) {
return getLastPathComponent(getUrlWithoutRevision(remote));
+ }
return local;
}
/**
- * Returns the pure URL portion of {@link #remote} by removing
- * possible "@NNN" suffix.
+ * Returns the pure URL portion of {@link #remote} by removing possible "@NNN" suffix.
*/
public String getURL() {
- return getUrlWithoutRevision(remote);
+ return getUrlWithoutRevision(remote);
}
/**
@@ -2374,7 +2490,7 @@
* Repository UUID. Lazy computed and cached.
*/
public UUID getUUID(AbstractProject context) throws SVNException {
- if(repositoryUUID==null || repositoryRoot==null) {
+ if (repositoryUUID == null || repositoryRoot == null) {
synchronized (this) {
SVNRepository r = openRepository(context);
r.testConnection(); // make sure values are fetched
@@ -2386,7 +2502,7 @@
}
public SVNRepository openRepository(AbstractProject context) throws SVNException {
- return Hudson.getInstance().getDescriptorByType(DescriptorImpl.class).getRepository(context,getSVNURL());
+ return Hudson.getInstance().getDescriptorByType(DescriptorImpl.class).getRepository(context, getSVNURL());
}
public SVNURL getRepositoryRoot(AbstractProject context) throws SVNException {
@@ -2395,60 +2511,60 @@
}
/**
- * Figures out which revision to check out.
- *
- * If {@link #remote} is {@code url@rev}, then this method
- * returns that specific revision.
- *
- * @param defaultValue
- * If "@NNN" portion is not in the URL, this value will be returned.
- * Normally, this is the SVN revision timestamped at the build date.
+ * Figures out which revision to check out. If {@link #remote} is {@code url@rev}, then this method returns that
+ * specific revision.
+ *
+ * @param defaultValue If "@NNN" portion is not in the URL, this value will be returned. Normally, this is the
+ * SVN revision timestamped at the build date.
*/
public SVNRevision getRevision(SVNRevision defaultValue) {
SVNRevision revision = getRevisionFromRemoteUrl(remote);
return revision != null ? revision : defaultValue;
}
- private String getExpandedRemote(AbstractBuild,?> build) {
+ private String getExpandedRemote(AbstractBuild, ?> build) {
String outRemote = remote;
ParametersAction parameters = build.getAction(ParametersAction.class);
- if (parameters != null)
+ if (parameters != null) {
outRemote = parameters.substitute(build, remote);
+ }
return outRemote;
}
/**
- * @deprecated This method is used by {@link #getExpandedLocation(AbstractBuild)}
- * which is deprecated since it expands variables only based
- * on build parameters.
+ * @deprecated This method is used by {@link #getExpandedLocation(AbstractBuild)} which is deprecated since it
+ * expands variables only based on build parameters.
*/
- private String getExpandedLocalDir(AbstractBuild,?> build) {
+ @Deprecated
+ private String getExpandedLocalDir(AbstractBuild, ?> build) {
String outLocalDir = getLocalDir();
ParametersAction parameters = build.getAction(ParametersAction.class);
- if (parameters != null)
+ if (parameters != null) {
outLocalDir = parameters.substitute(build, getLocalDir());
+ }
return outLocalDir;
}
/**
* Expand location value based on Build parametric execution.
- *
+ *
* @param build Build instance for expanding parameters into their values
* @return Output ModuleLocation expanded according to Build parameters values.
- * @deprecated Use {@link #getExpandedLocation(EnvVars)} for vars expansion
- * to be performed on all env vars rather than just build parameters.
+ * @deprecated Use {@link #getExpandedLocation(EnvVars)} for vars expansion to be performed on all env vars
+ * rather than just build parameters.
*/
+ @Deprecated
public ModuleLocation getExpandedLocation(AbstractBuild, ?> build) {
return new ModuleLocation(getExpandedRemote(build), getExpandedLocalDir(build));
}
-
+
/**
* Expand location value based on environment variables.
- *
+ *
* @return Output ModuleLocation expanded according to specified env vars.
*/
public ModuleLocation getExpandedLocation(EnvVars env) {
@@ -2484,45 +2600,55 @@
private static final Logger LOGGER = Logger.getLogger(SubversionSCM.class.getName());
/**
- * Network timeout in milliseconds.
- * The main point of this is to prevent infinite hang, so it should be a rather long value to avoid
- * accidental time out problem.
+ * Network timeout in milliseconds. The main point of this is to prevent infinite hang, so it should be a rather
+ * long value to avoid accidental time out problem.
*/
- public static int DEFAULT_TIMEOUT = Integer.getInteger(SubversionSCM.class.getName()+".timeout",3600*1000);
+ public static int DEFAULT_TIMEOUT = Integer.getInteger(SubversionSCM.class.getName() + ".timeout", 3600 * 1000);
/**
* Property to control whether SCM polling happens from the slave or master
*/
- public static boolean POLL_FROM_MASTER = Boolean.getBoolean(SubversionSCM.class.getName()+".pollFromMaster");
+ public static boolean POLL_FROM_MASTER = Boolean.getBoolean(SubversionSCM.class.getName() + ".pollFromMaster");
/**
* If set to non-null, read configuration from this directory instead of "~/.subversion".
*/
- public static String CONFIG_DIR = System.getProperty(SubversionSCM.class.getName()+".configDir");
-
+ public static String CONFIG_DIR = System.getProperty(SubversionSCM.class.getName() + ".configDir");
+
/**
* Enables trace logging of Ganymed SSH library.
*
* Intended to be invoked from Groovy console.
*/
public static void enableSshDebug(Level level) {
- if(level==null) level= Level.FINEST; // default
+ if (level == null) {
+ level = Level.FINEST; // default
+ }
final Level lv = level;
- com.trilead.ssh2.log.Logger.enabled=true;
+ com.trilead.ssh2.log.Logger.enabled = true;
com.trilead.ssh2.log.Logger.logger = new DebugLogger() {
+
private final Logger LOGGER = Logger.getLogger(SCPClient.class.getPackage().getName());
+
+ @Override
public void log(int level, String className, String message) {
- LOGGER.log(lv,className+' '+message);
+ LOGGER.log(lv, className + ' ' + message);
}
};
}
- /*package*/ static boolean compareSVNAuthentications(SVNAuthentication a1, SVNAuthentication a2) {
- if (a1==null && a2==null) return true;
- if (a1==null || a2==null) return false;
- if (a1.getClass()!=a2.getClass()) return false;
+ /* package */static boolean compareSVNAuthentications(SVNAuthentication a1, SVNAuthentication a2) {
+ if (a1 == null && a2 == null) {
+ return true;
+ }
+ if (a1 == null || a2 == null) {
+ return false;
+ }
+ if (a1.getClass() != a2.getClass()) {
+ return false;
+ }
try {
return describeBean(a1).equals(describeBean(a2));
@@ -2538,20 +2664,20 @@
/**
* In preparation for a comparison, char[] needs to be converted that supports value equality.
*/
- private static Map describeBean(Object o) throws InvocationTargetException, NoSuchMethodException, IllegalAccessException {
- Map,?> m = PropertyUtils.describe(o);
+ private static Map describeBean(Object o)
+ throws InvocationTargetException, NoSuchMethodException, IllegalAccessException {
+ Map, ?> m = PropertyUtils.describe(o);
for (Entry e : m.entrySet()) {
Object v = e.getValue();
if (v instanceof char[]) {
- char[] chars = (char[]) v;
+ char[] chars = (char[])v;
e.setValue(new String(chars));
}
}
return m;
}
- private static String getUrlWithoutRevision(
- String remoteUrlPossiblyWithRevision) {
+ private static String getUrlWithoutRevision(String remoteUrlPossiblyWithRevision) {
int idx = remoteUrlPossiblyWithRevision.lastIndexOf('@');
int slashIdx = remoteUrlPossiblyWithRevision.lastIndexOf('/');
if (idx > 0 && idx > slashIdx) {
@@ -2569,8 +2695,7 @@
*
* @return the revision or null
*/
- private static SVNRevision getRevisionFromRemoteUrl(
- String remoteUrlPossiblyWithRevision) {
+ private static SVNRevision getRevisionFromRemoteUrl(String remoteUrlPossiblyWithRevision) {
int idx = remoteUrlPossiblyWithRevision.lastIndexOf('@');
int slashIdx = remoteUrlPossiblyWithRevision.lastIndexOf('/');
if (idx > 0 && idx > slashIdx) {
diff --git a/work/.owner b/work/.owner
new file mode 100644
index 0000000..afc74e1
--- /dev/null
+++ b/work/.owner
@@ -0,0 +1 @@
+616259117 contextPath="" at 10056@ATGRZ4035535M
\ No newline at end of file
diff --git a/work/Fingerprint cleanup.log b/work/Fingerprint cleanup.log
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/work/Fingerprint cleanup.log
diff --git a/work/Workspace clean-up.log b/work/Workspace clean-up.log
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/work/Workspace clean-up.log
diff --git a/work/config.xml b/work/config.xml
new file mode 100644
index 0000000..32d1cf9
--- /dev/null
+++ b/work/config.xml
@@ -0,0 +1,43 @@
+
+
+ 1.405
+ 2
+ NORMAL
+
+
+
+
+
+
+
+ 5
+ 0
+
+
+
+ Alle
+ false
+ false
+
+
+ Alle
+ 0
+
+
+
+
+
+
+
+
+
+
+ 1
+ OPENNET_RC
+ branches/Rel_2012_05
+
+
+
+
+
+
\ No newline at end of file
diff --git a/work/hudson.maven.MavenModuleSet.xml b/work/hudson.maven.MavenModuleSet.xml
new file mode 100644
index 0000000..7a26895
--- /dev/null
+++ b/work/hudson.maven.MavenModuleSet.xml
@@ -0,0 +1,29 @@
+
+
+
+
+ DEFAULT
+ -1
+
+
+ LEVEL_MINIMAL
+ 0
+
+
+ LEVEL_MAVEN_2_0
+ 20
+
+
+ LEVEL_MAVEN_3_0
+ 30
+
+
+ LEVEL_MAVEN_3_1
+ 31
+
+
+ LEVEL_STRICT
+ 30
+
+
+
\ No newline at end of file
diff --git a/work/hudson.model.UpdateCenter.xml b/work/hudson.model.UpdateCenter.xml
new file mode 100644
index 0000000..4f317e7
--- /dev/null
+++ b/work/hudson.model.UpdateCenter.xml
@@ -0,0 +1,7 @@
+
+
+
+ default
+ http://updates.jenkins-ci.org/update-center.json
+
+
\ No newline at end of file
diff --git a/work/hudson.scm.CVSSCM.xml b/work/hudson.scm.CVSSCM.xml
new file mode 100644
index 0000000..5705517
--- /dev/null
+++ b/work/hudson.scm.CVSSCM.xml
@@ -0,0 +1,5 @@
+
+
+ 1
+ false
+
\ No newline at end of file
diff --git a/work/hudson.scm.SubversionSCM.xml b/work/hudson.scm.SubversionSCM.xml
new file mode 100644
index 0000000..4775739
--- /dev/null
+++ b/work/hudson.scm.SubversionSCM.xml
@@ -0,0 +1,8 @@
+
+
+ 3
+
+ 8
+ false
+ true
+
\ No newline at end of file
diff --git a/work/hudson.tasks.Ant.xml b/work/hudson.tasks.Ant.xml
new file mode 100644
index 0000000..d09104b
--- /dev/null
+++ b/work/hudson.tasks.Ant.xml
@@ -0,0 +1,4 @@
+
+
+
+
\ No newline at end of file
diff --git a/work/hudson.tasks.Mailer.xml b/work/hudson.tasks.Mailer.xml
new file mode 100644
index 0000000..ded7a9c
--- /dev/null
+++ b/work/hudson.tasks.Mailer.xml
@@ -0,0 +1,7 @@
+
+
+ http://localhost:8080/
+ Adresse nicht konfiguriert <nobody@nowhere>
+ false
+ UTF-8
+
\ No newline at end of file
diff --git a/work/hudson.tasks.Maven.xml b/work/hudson.tasks.Maven.xml
new file mode 100644
index 0000000..6591595
--- /dev/null
+++ b/work/hudson.tasks.Maven.xml
@@ -0,0 +1,4 @@
+
+
+
+
\ No newline at end of file
diff --git a/work/hudson.tasks.Shell.xml b/work/hudson.tasks.Shell.xml
new file mode 100644
index 0000000..df44a4d
--- /dev/null
+++ b/work/hudson.tasks.Shell.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/work/hudson.triggers.SCMTrigger.xml b/work/hudson.triggers.SCMTrigger.xml
new file mode 100644
index 0000000..70867ab
--- /dev/null
+++ b/work/hudson.triggers.SCMTrigger.xml
@@ -0,0 +1,5 @@
+
+
+ false
+ 0
+
\ No newline at end of file
diff --git a/work/identity.key b/work/identity.key
new file mode 100644
index 0000000..92fe2c0
--- /dev/null
+++ b/work/identity.key
@@ -0,0 +1,27 @@
+-----BEGIN RSA PRIVATE KEY-----
+MIIEpAIBAAKCAQEAg7DTbS+1KY/fOtoC1zaoVxUi3auSeoV29T257dwC6VnVE6Rx
+DLtJHiqixjCl5Xb+2/HVfyH+U7XEGGtX/kLfLThIr4hjR70GCXt5nle1TMDkKdPx
+7fVsRKej8INkvX0YcCH0HLj+HsEAgh+qZwPaPVkJcfyXizQqHp8qshdsweYA9f7H
+kIyGhddq2MxythI0wm/5Tj3DK2uFJMjG0DGiDBsScRk1R3iTWrrgKMR0vA83+sI/
+bKsQ6KhUpDL0eOOgiYs5QPklVCVT3G47d6Jeo98HWz4sZeQJtIXWJSuWwEUILjLz
+2itXZUHzCRUlL97/vh86Bmp88Aja3RNMf00HKQIDAQABAoIBAHdghvh2g+IuQqzl
+zidrq8RtK5MIohsg+4oqr244wAbq4SYSLkzdRdXrzmyc0vYlHbkiC2hY12To499D
+B5w84HTsja9Zkq4IYv2bic8JMRdn0C0+rRQKI2BFG26+nUbMrKeRj+mtpOcaDCzp
+KZ6CtoZgPRiwYmvVGM1zec/BPlyxmaDBTDzmKM1tQ0Qf9DV1CbPZfWcOd7PeG40/
+6M5pX0k1L4D1gFdbxmCuuVUbfr1RTL0F6GV0Df34f+zJrjcigyWSVPnNGLV1470q
+IbLjgvJvSUHgMzZ4NOcclgOuWFW17YcEzVPa4KpQGhlCek+2NSGbIoE3a8zMvY06
+xmzx8QUCgYEA9PkVtzNoYOCeecfMxC0vsz5U0fUega0KXnrLwksL3Dl4Qr9CmnM9
+gPCXttxXYjpIrA4iBhOBe2ax5Agwr0+AFLHSmLucw5gCHY0fdswZ8BAj/3fXkBaL
+blPHisMHzQk25zUVzlltg9ZT386MFczHMjP/DUEGCyNhOxK9klHLOAMCgYEAiZ5Y
+5xK1TP5hyOUremfWT3mNXrNcGOMxJU4bhG4t4SYQCjdSVdhWOqWUwyoqQYC+2sVj
+fVX9Lla8YAOHQgi35Vnlu4IiDkYNaVelePNEDAuPyTCk3BCOZnk79eXm+kqbTYnE
+8Rns260FgZv6qb4xqIICrs9WjmKXoJMjV6EsymMCgYEA7u3CcFyDgXmTF9P3s58e
+1wQEVoNsra3IXz4FXgs0Fic3VGKW421in1AJqSBfWj7egnGGXcbIk0MmXfJfCZ3Q
+nl6RuMXDsEGiTpBGD+ghpDMZ6SFJ7g8PDxxHkt+FzEUgd4EfM5OlbOCuDau2lcyU
+vDJaoOK6skJfou40V3HPc2ECgYADptL/Fqz+5QUdOo+DyPuT0krhB2tbMbQdJExw
+oCfRgJwOWVdy9bGcDsa6wwSqBkuKLJCuQ7jbIOwQtCdDpk2S5WbGKfbTYCJ8+Blo
+8zOMCkZ/dS36tOnCaFch+D6/x3kFfrFeIGz7i0TJIqVtGaHhscl2cAQA9TbGyQC4
+E4vHtwKBgQCeNl0dKAOHN+XQcAwgEe9ssw2MTN6YuiY/awMG8UrZMNWuWdrERgvY
+MQZrUU/8z4V67mv7DNX0GQ2a5dnKFmbielTRY+cjUzrOxVtpNbu3aEKOvhn8X69q
+3aCVEDJsLNGtWRy1Vrp5KjPWxoCPFzaOIYxciXVSMZvovUZHGg7ZuQ==
+-----END RSA PRIVATE KEY-----
diff --git a/work/jobs/grzsrctest-opennet-RC/builds/2012-12-12_17-06-38/build.xml b/work/jobs/grzsrctest-opennet-RC/builds/2012-12-12_17-06-38/build.xml
new file mode 100644
index 0000000..2565ab1
--- /dev/null
+++ b/work/jobs/grzsrctest-opennet-RC/builds/2012-12-12_17-06-38/build.xml
@@ -0,0 +1,43 @@
+
+
+
+
+
+
+ anonymous
+
+
+
+
+
+
+
+
+
+ http://grzsrctest01.infonova.at/testrepo/opennet/branches/Rel_2012_05
+ 75
+
+
+
+
+
+
+
+
+ http://grzsrctest01.infonova.at/testrepo/opennet/branches/Rel_2012_05
+ 75
+
+
+
+
+ 1
+ SUCCESS
+ 1197
+ windows-1252
+ false
+
+ C:\TA\WS\subversion-plugin\work\jobs\grzsrctest-opennet-RC\workspace
+ 1.405
+
+
+
\ No newline at end of file
diff --git a/work/jobs/grzsrctest-opennet-RC/builds/2012-12-12_17-06-38/changelog.xml b/work/jobs/grzsrctest-opennet-RC/builds/2012-12-12_17-06-38/changelog.xml
new file mode 100644
index 0000000..a891191
--- /dev/null
+++ b/work/jobs/grzsrctest-opennet-RC/builds/2012-12-12_17-06-38/changelog.xml
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/work/jobs/grzsrctest-opennet-RC/builds/2012-12-12_17-06-38/log b/work/jobs/grzsrctest-opennet-RC/builds/2012-12-12_17-06-38/log
new file mode 100644
index 0000000..3b91409
--- /dev/null
+++ b/work/jobs/grzsrctest-opennet-RC/builds/2012-12-12_17-06-38/log
@@ -0,0 +1,8 @@
+Gestartet durch Benutzer anonymous
+Checking out a fresh workspace because there's no workspace at C:\TA\WS\subversion-plugin\work\jobs\grzsrctest-opennet-RC\workspace
+Cleaning local Directory .
+Checking out http://grzsrctest01.infonova.at/testrepo/opennet/branches/Rel_2012_05 at revision '2012-12-12T17:06:38.001 +0100'
+A test.txt
+ U .
+At revision 89
+Finished: SUCCESS
diff --git a/work/jobs/grzsrctest-opennet-RC/builds/2012-12-12_17-06-38/revision.txt b/work/jobs/grzsrctest-opennet-RC/builds/2012-12-12_17-06-38/revision.txt
new file mode 100644
index 0000000..d224e9d
--- /dev/null
+++ b/work/jobs/grzsrctest-opennet-RC/builds/2012-12-12_17-06-38/revision.txt
@@ -0,0 +1 @@
+http://grzsrctest01.infonova.at/testrepo/opennet/branches/Rel_2012_05/75
diff --git a/work/jobs/grzsrctest-opennet-RC/builds/2012-12-13_10-26-51/build.xml b/work/jobs/grzsrctest-opennet-RC/builds/2012-12-13_10-26-51/build.xml
new file mode 100644
index 0000000..1f4e991
--- /dev/null
+++ b/work/jobs/grzsrctest-opennet-RC/builds/2012-12-13_10-26-51/build.xml
@@ -0,0 +1,54 @@
+
+
+
+
+
+
+ http://grzsrctest01.infonova.at/testrepo/opennet/$OPENNET_RC
+ 92
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ http://grzsrctest01.infonova.at/testrepo/opennet/branches/Rel_2012_05
+ 92
+
+
+
+
+
+
+
+
+ http://grzsrctest01.infonova.at/testrepo/opennet/branches/Rel_2012_05
+ 92
+
+
+
+
+ 2
+ SUCCESS
+ 12608
+ windows-1252
+ false
+
+ C:\TA\WS\subversion-plugin\work\jobs\grzsrctest-opennet-RC\workspace
+ 1.405
+
+
+ unknown
+
+
\ No newline at end of file
diff --git a/work/jobs/grzsrctest-opennet-RC/builds/2012-12-13_10-26-51/changelog.xml b/work/jobs/grzsrctest-opennet-RC/builds/2012-12-13_10-26-51/changelog.xml
new file mode 100644
index 0000000..9fa60c6
--- /dev/null
+++ b/work/jobs/grzsrctest-opennet-RC/builds/2012-12-13_10-26-51/changelog.xml
@@ -0,0 +1 @@
+2012-12-12T16:07:22.093354Z/opennet/branches/Rel_2012_05/test.txt2012-12-12T16:37:18.217630Z/opennet/branches/Rel_2012_05/test.txt2012-12-12T16:45:37.837913Z/opennet/branches/Rel_2012_05/test.txt
\ No newline at end of file
diff --git a/work/jobs/grzsrctest-opennet-RC/builds/2012-12-13_10-26-51/log b/work/jobs/grzsrctest-opennet-RC/builds/2012-12-13_10-26-51/log
new file mode 100644
index 0000000..b218fd7
--- /dev/null
+++ b/work/jobs/grzsrctest-opennet-RC/builds/2012-12-13_10-26-51/log
@@ -0,0 +1,5 @@
+Build wurde durch eine SCM-Änderung ausgelöst.
+Updating http://grzsrctest01.infonova.at/testrepo/opennet/branches/Rel_2012_05 to revision '2012-12-13T10:26:51.174 +0100'
+U test.txt
+At revision 92
+Finished: SUCCESS
diff --git a/work/jobs/grzsrctest-opennet-RC/builds/2012-12-13_10-26-51/polling.log b/work/jobs/grzsrctest-opennet-RC/builds/2012-12-13_10-26-51/polling.log
new file mode 100644
index 0000000..a6e58bc
--- /dev/null
+++ b/work/jobs/grzsrctest-opennet-RC/builds/2012-12-13_10-26-51/polling.log
@@ -0,0 +1,4 @@
+Started on 13.12.2012 10:15:13
+Arbeitsbereich enthält http://grzsrctest01.infonova.at/testrepo/opennet/$OPENNET_RC nicht. Neuer Build erforderlich.
+Done. Took 11 Minuten
+Changes found
diff --git a/work/jobs/grzsrctest-opennet-RC/builds/2012-12-13_10-26-51/revision.txt b/work/jobs/grzsrctest-opennet-RC/builds/2012-12-13_10-26-51/revision.txt
new file mode 100644
index 0000000..e67760e
--- /dev/null
+++ b/work/jobs/grzsrctest-opennet-RC/builds/2012-12-13_10-26-51/revision.txt
@@ -0,0 +1 @@
+http://grzsrctest01.infonova.at/testrepo/opennet/branches/Rel_2012_05/92
diff --git a/work/jobs/grzsrctest-opennet-RC/builds/2012-12-13_10-53-03/build.xml b/work/jobs/grzsrctest-opennet-RC/builds/2012-12-13_10-53-03/build.xml
new file mode 100644
index 0000000..a697d2b
--- /dev/null
+++ b/work/jobs/grzsrctest-opennet-RC/builds/2012-12-13_10-53-03/build.xml
@@ -0,0 +1,54 @@
+
+
+
+
+
+
+ http://grzsrctest01.infonova.at/testrepo/opennet/$OPENNET_RC
+ 93
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ http://grzsrctest01.infonova.at/testrepo/opennet/branches/Rel_2012_05
+ 93
+
+
+
+
+
+
+
+
+ http://grzsrctest01.infonova.at/testrepo/opennet/branches/Rel_2012_05
+ 93
+
+
+
+
+ 3
+ SUCCESS
+ 14733
+ windows-1252
+ false
+
+ C:\TA\WS\subversion-plugin\work\jobs\grzsrctest-opennet-RC\workspace
+ 1.405
+
+
+ unknown
+
+
\ No newline at end of file
diff --git a/work/jobs/grzsrctest-opennet-RC/builds/2012-12-13_10-53-03/changelog.xml b/work/jobs/grzsrctest-opennet-RC/builds/2012-12-13_10-53-03/changelog.xml
new file mode 100644
index 0000000..455eda6
--- /dev/null
+++ b/work/jobs/grzsrctest-opennet-RC/builds/2012-12-13_10-53-03/changelog.xml
@@ -0,0 +1 @@
+2012-12-13T09:52:56.512605Z/opennet/branches/Rel_2012_05/test.txt
\ No newline at end of file
diff --git a/work/jobs/grzsrctest-opennet-RC/builds/2012-12-13_10-53-03/log b/work/jobs/grzsrctest-opennet-RC/builds/2012-12-13_10-53-03/log
new file mode 100644
index 0000000..564e1a2
--- /dev/null
+++ b/work/jobs/grzsrctest-opennet-RC/builds/2012-12-13_10-53-03/log
@@ -0,0 +1,5 @@
+Build wurde durch eine SCM-Änderung ausgelöst.
+Updating http://grzsrctest01.infonova.at/testrepo/opennet/branches/Rel_2012_05 to revision '2012-12-13T10:53:03.883 +0100'
+U test.txt
+At revision 93
+Finished: SUCCESS
diff --git a/work/jobs/grzsrctest-opennet-RC/builds/2012-12-13_10-53-03/polling.log b/work/jobs/grzsrctest-opennet-RC/builds/2012-12-13_10-53-03/polling.log
new file mode 100644
index 0000000..89f0fc3
--- /dev/null
+++ b/work/jobs/grzsrctest-opennet-RC/builds/2012-12-13_10-53-03/polling.log
@@ -0,0 +1,6 @@
+Started on 13.12.2012 10:52:56
+Received SCM poll call on for grzsrctest-opennet-RC on 13.12.2012 10:52:58
+http://grzsrctest01.infonova.at/testrepo/opennet/branches/Rel_2012_05 liegt in Revision 93 vor
+ (Änderungen zu Revision 92)
+Done. Took 1,9 Sekunden
+Changes found
diff --git a/work/jobs/grzsrctest-opennet-RC/builds/2012-12-13_10-53-03/revision.txt b/work/jobs/grzsrctest-opennet-RC/builds/2012-12-13_10-53-03/revision.txt
new file mode 100644
index 0000000..fd0ca22
--- /dev/null
+++ b/work/jobs/grzsrctest-opennet-RC/builds/2012-12-13_10-53-03/revision.txt
@@ -0,0 +1 @@
+http://grzsrctest01.infonova.at/testrepo/opennet/branches/Rel_2012_05/93
diff --git a/work/jobs/grzsrctest-opennet-RC/config.xml b/work/jobs/grzsrctest-opennet-RC/config.xml
new file mode 100644
index 0000000..1343ccc
--- /dev/null
+++ b/work/jobs/grzsrctest-opennet-RC/config.xml
@@ -0,0 +1,34 @@
+
+
+
+
+ false
+
+
+
+
+ http://grzsrctest01.infonova.at/testrepo/opennet/$OPENNET_RC
+ .
+
+
+
+
+
+
+
+
+
+ true
+ false
+ false
+ false
+
+
+ @yearly
+
+
+ false
+
+
+
+
\ No newline at end of file
diff --git a/work/jobs/grzsrctest-opennet-RC/nextBuildNumber b/work/jobs/grzsrctest-opennet-RC/nextBuildNumber
new file mode 100644
index 0000000..b8626c4
--- /dev/null
+++ b/work/jobs/grzsrctest-opennet-RC/nextBuildNumber
@@ -0,0 +1 @@
+4
diff --git a/work/jobs/grzsrctest-opennet-RC/scm-polling.log b/work/jobs/grzsrctest-opennet-RC/scm-polling.log
new file mode 100644
index 0000000..89f0fc3
--- /dev/null
+++ b/work/jobs/grzsrctest-opennet-RC/scm-polling.log
@@ -0,0 +1,6 @@
+Started on 13.12.2012 10:52:56
+Received SCM poll call on for grzsrctest-opennet-RC on 13.12.2012 10:52:58
+http://grzsrctest01.infonova.at/testrepo/opennet/branches/Rel_2012_05 liegt in Revision 93 vor
+ (Änderungen zu Revision 92)
+Done. Took 1,9 Sekunden
+Changes found
diff --git a/work/jobs/grzsrctest-opennet-RC/svnexternals.txt b/work/jobs/grzsrctest-opennet-RC/svnexternals.txt
new file mode 100644
index 0000000..2b0ec83
--- /dev/null
+++ b/work/jobs/grzsrctest-opennet-RC/svnexternals.txt
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/work/jobs/grzsrctest-opennet-RC/workspace/.svn/all-wcprops b/work/jobs/grzsrctest-opennet-RC/workspace/.svn/all-wcprops
new file mode 100644
index 0000000..c7388bc
--- /dev/null
+++ b/work/jobs/grzsrctest-opennet-RC/workspace/.svn/all-wcprops
@@ -0,0 +1,11 @@
+K 25
+svn:wc:ra_dav:version-url
+V 50
+/testrepo/!svn/ver/93/opennet/branches/Rel_2012_05
+END
+test.txt
+K 25
+svn:wc:ra_dav:version-url
+V 59
+/testrepo/!svn/ver/93/opennet/branches/Rel_2012_05/test.txt
+END
diff --git a/work/jobs/grzsrctest-opennet-RC/workspace/.svn/dir-prop-base b/work/jobs/grzsrctest-opennet-RC/workspace/.svn/dir-prop-base
new file mode 100644
index 0000000..0aaeed6
--- /dev/null
+++ b/work/jobs/grzsrctest-opennet-RC/workspace/.svn/dir-prop-base
@@ -0,0 +1,10 @@
+K 10
+svn:ignore
+V 9
+.project
+
+K 13
+svn:mergeinfo
+V 32
+/opennet/branches/Rel_2012_04:48
+END
diff --git a/work/jobs/grzsrctest-opennet-RC/workspace/.svn/entries b/work/jobs/grzsrctest-opennet-RC/workspace/.svn/entries
new file mode 100644
index 0000000..da9a912
--- /dev/null
+++ b/work/jobs/grzsrctest-opennet-RC/workspace/.svn/entries
@@ -0,0 +1,39 @@
+8
+
+dir
+93
+http://grzsrctest01.infonova.at/testrepo/opennet/branches/Rel_2012_05
+http://grzsrctest01.infonova.at/testrepo
+
+
+
+2012-12-13T09:52:56.512605Z
+93
+
+has-props
+
+svn:special svn:externals svn:needs-lock
+
+
+
+
+
+
+
+
+
+
+
+6e6fdb35-1c1a-48e4-a78d-5e85b172976f
+
+test.txt
+file
+
+
+
+
+2012-12-13T09:53:16.972000Z
+6520dd0805fe51b8f8c576097376a813
+2012-12-13T09:52:56.512605Z
+93
+
diff --git a/work/jobs/grzsrctest-opennet-RC/workspace/.svn/format b/work/jobs/grzsrctest-opennet-RC/workspace/.svn/format
new file mode 100644
index 0000000..45a4fb7
--- /dev/null
+++ b/work/jobs/grzsrctest-opennet-RC/workspace/.svn/format
@@ -0,0 +1 @@
+8
diff --git a/work/jobs/grzsrctest-opennet-RC/workspace/.svn/text-base/test.txt.svn-base b/work/jobs/grzsrctest-opennet-RC/workspace/.svn/text-base/test.txt.svn-base
new file mode 100644
index 0000000..46f9745
--- /dev/null
+++ b/work/jobs/grzsrctest-opennet-RC/workspace/.svn/text-base/test.txt.svn-base
@@ -0,0 +1,9 @@
+Hallo haha 2
+sdlfdj
+sdf
+asdfasdf
+asdf
+asdf
+sdf
+foo
+woohoo
\ No newline at end of file
diff --git a/work/jobs/grzsrctest-opennet-RC/workspace/test.txt b/work/jobs/grzsrctest-opennet-RC/workspace/test.txt
new file mode 100644
index 0000000..46f9745
--- /dev/null
+++ b/work/jobs/grzsrctest-opennet-RC/workspace/test.txt
@@ -0,0 +1,9 @@
+Hallo haha 2
+sdlfdj
+sdf
+asdfasdf
+asdf
+asdf
+sdf
+foo
+woohoo
\ No newline at end of file
diff --git a/work/jobs/grzsrctest-opennet-trunk/builds/2012-12-12_17-04-58/build.xml b/work/jobs/grzsrctest-opennet-trunk/builds/2012-12-12_17-04-58/build.xml
new file mode 100644
index 0000000..c8ec04f
--- /dev/null
+++ b/work/jobs/grzsrctest-opennet-trunk/builds/2012-12-12_17-04-58/build.xml
@@ -0,0 +1,52 @@
+
+
+
+
+
+
+ http://grzsrctest01.infonova.at/testrepo/opennet/trunk
+ 89
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ http://grzsrctest01.infonova.at/testrepo/opennet/trunk
+ 89
+
+
+
+
+
+
+
+
+ http://grzsrctest01.infonova.at/testrepo/opennet/trunk
+ 89
+
+
+
+
+ 1
+ SUCCESS
+ 1822
+ windows-1252
+ false
+
+ C:\TA\WS\subversion-plugin\work\jobs\grzsrctest-opennet-trunk\workspace
+ 1.405
+
+
+
\ No newline at end of file
diff --git a/work/jobs/grzsrctest-opennet-trunk/builds/2012-12-12_17-04-58/changelog.xml b/work/jobs/grzsrctest-opennet-trunk/builds/2012-12-12_17-04-58/changelog.xml
new file mode 100644
index 0000000..a891191
--- /dev/null
+++ b/work/jobs/grzsrctest-opennet-trunk/builds/2012-12-12_17-04-58/changelog.xml
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/work/jobs/grzsrctest-opennet-trunk/builds/2012-12-12_17-04-58/log b/work/jobs/grzsrctest-opennet-trunk/builds/2012-12-12_17-04-58/log
new file mode 100644
index 0000000..a2733dd
--- /dev/null
+++ b/work/jobs/grzsrctest-opennet-trunk/builds/2012-12-12_17-04-58/log
@@ -0,0 +1,8 @@
+Build wurde durch eine SCM-Änderung ausgelöst.
+Checking out a fresh workspace because there's no workspace at C:\TA\WS\subversion-plugin\work\jobs\grzsrctest-opennet-trunk\workspace
+Cleaning local Directory .
+Checking out http://grzsrctest01.infonova.at/testrepo/opennet/trunk at revision 89
+A test.txt
+ U .
+At revision 89
+Finished: SUCCESS
diff --git a/work/jobs/grzsrctest-opennet-trunk/builds/2012-12-12_17-04-58/polling.log b/work/jobs/grzsrctest-opennet-trunk/builds/2012-12-12_17-04-58/polling.log
new file mode 100644
index 0000000..35252a3
--- /dev/null
+++ b/work/jobs/grzsrctest-opennet-trunk/builds/2012-12-12_17-04-58/polling.log
@@ -0,0 +1,4 @@
+Started on 12.12.2012 17:04:53
+Es existiert kein Build. Starte neuen Build.
+Done. Took 1 ms
+Changes found
diff --git a/work/jobs/grzsrctest-opennet-trunk/builds/2012-12-12_17-04-58/revision.txt b/work/jobs/grzsrctest-opennet-trunk/builds/2012-12-12_17-04-58/revision.txt
new file mode 100644
index 0000000..375253d
--- /dev/null
+++ b/work/jobs/grzsrctest-opennet-trunk/builds/2012-12-12_17-04-58/revision.txt
@@ -0,0 +1 @@
+http://grzsrctest01.infonova.at/testrepo/opennet/trunk/89
diff --git a/work/jobs/grzsrctest-opennet-trunk/config.xml b/work/jobs/grzsrctest-opennet-trunk/config.xml
new file mode 100644
index 0000000..e585794
--- /dev/null
+++ b/work/jobs/grzsrctest-opennet-trunk/config.xml
@@ -0,0 +1,34 @@
+
+
+
+
+ false
+
+
+
+
+ http://grzsrctest01.infonova.at/testrepo/opennet/trunk
+ .
+
+
+
+
+
+
+
+
+
+ true
+ false
+ false
+ false
+
+
+ @yearly
+
+
+ false
+
+
+
+
\ No newline at end of file
diff --git a/work/jobs/grzsrctest-opennet-trunk/nextBuildNumber b/work/jobs/grzsrctest-opennet-trunk/nextBuildNumber
new file mode 100644
index 0000000..0cfbf08
--- /dev/null
+++ b/work/jobs/grzsrctest-opennet-trunk/nextBuildNumber
@@ -0,0 +1 @@
+2
diff --git a/work/jobs/grzsrctest-opennet-trunk/scm-polling.log b/work/jobs/grzsrctest-opennet-trunk/scm-polling.log
new file mode 100644
index 0000000..9fa9c66
--- /dev/null
+++ b/work/jobs/grzsrctest-opennet-trunk/scm-polling.log
@@ -0,0 +1,4 @@
+Started on 12.12.2012 17:04:55
+Es existiert kein Build. Starte neuen Build.
+Done. Took 0 ms
+No changes
diff --git a/work/jobs/grzsrctest-opennet-trunk/svnexternals.txt b/work/jobs/grzsrctest-opennet-trunk/svnexternals.txt
new file mode 100644
index 0000000..2b0ec83
--- /dev/null
+++ b/work/jobs/grzsrctest-opennet-trunk/svnexternals.txt
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/work/jobs/grzsrctest-opennet-trunk/workspace/.svn/all-wcprops b/work/jobs/grzsrctest-opennet-trunk/workspace/.svn/all-wcprops
new file mode 100644
index 0000000..5198d20
--- /dev/null
+++ b/work/jobs/grzsrctest-opennet-trunk/workspace/.svn/all-wcprops
@@ -0,0 +1,11 @@
+K 25
+svn:wc:ra_dav:version-url
+V 35
+/testrepo/!svn/ver/89/opennet/trunk
+END
+test.txt
+K 25
+svn:wc:ra_dav:version-url
+V 44
+/testrepo/!svn/ver/89/opennet/trunk/test.txt
+END
diff --git a/work/jobs/grzsrctest-opennet-trunk/workspace/.svn/dir-prop-base b/work/jobs/grzsrctest-opennet-trunk/workspace/.svn/dir-prop-base
new file mode 100644
index 0000000..0aaeed6
--- /dev/null
+++ b/work/jobs/grzsrctest-opennet-trunk/workspace/.svn/dir-prop-base
@@ -0,0 +1,10 @@
+K 10
+svn:ignore
+V 9
+.project
+
+K 13
+svn:mergeinfo
+V 32
+/opennet/branches/Rel_2012_04:48
+END
diff --git a/work/jobs/grzsrctest-opennet-trunk/workspace/.svn/entries b/work/jobs/grzsrctest-opennet-trunk/workspace/.svn/entries
new file mode 100644
index 0000000..33d33d8
--- /dev/null
+++ b/work/jobs/grzsrctest-opennet-trunk/workspace/.svn/entries
@@ -0,0 +1,39 @@
+8
+
+dir
+89
+http://grzsrctest01.infonova.at/testrepo/opennet/trunk
+http://grzsrctest01.infonova.at/testrepo
+
+
+
+2012-12-12T16:04:39.647921Z
+89
+
+has-props
+
+svn:special svn:externals svn:needs-lock
+
+
+
+
+
+
+
+
+
+
+
+6e6fdb35-1c1a-48e4-a78d-5e85b172976f
+
+test.txt
+file
+
+
+
+
+2012-12-12T16:04:59.501000Z
+e29311f6f1bf1af907f9ef9f44b8328b
+2012-12-12T16:04:39.647921Z
+89
+
diff --git a/work/jobs/grzsrctest-opennet-trunk/workspace/.svn/format b/work/jobs/grzsrctest-opennet-trunk/workspace/.svn/format
new file mode 100644
index 0000000..45a4fb7
--- /dev/null
+++ b/work/jobs/grzsrctest-opennet-trunk/workspace/.svn/format
@@ -0,0 +1 @@
+8
diff --git a/work/jobs/grzsrctest-opennet-trunk/workspace/.svn/text-base/test.txt.svn-base b/work/jobs/grzsrctest-opennet-trunk/workspace/.svn/text-base/test.txt.svn-base
new file mode 100644
index 0000000..4bcfe98
--- /dev/null
+++ b/work/jobs/grzsrctest-opennet-trunk/workspace/.svn/text-base/test.txt.svn-base
@@ -0,0 +1 @@
+d
diff --git a/work/jobs/grzsrctest-opennet-trunk/workspace/test.txt b/work/jobs/grzsrctest-opennet-trunk/workspace/test.txt
new file mode 100644
index 0000000..4bcfe98
--- /dev/null
+++ b/work/jobs/grzsrctest-opennet-trunk/workspace/test.txt
@@ -0,0 +1 @@
+d
diff --git a/work/nodeMonitors.xml b/work/nodeMonitors.xml
new file mode 100644
index 0000000..572accb
--- /dev/null
+++ b/work/nodeMonitors.xml
@@ -0,0 +1,23 @@
+
+
+
+ false
+
+
+ false
+ 1GB
+
+
+ false
+ 1GB
+
+
+ false
+
+
+ false
+
+
+ false
+
+
\ No newline at end of file
diff --git a/work/plugins/cvs.hpi b/work/plugins/cvs.hpi
new file mode 100644
index 0000000..450a7e0
--- /dev/null
+++ b/work/plugins/cvs.hpi
Binary files differ
diff --git a/work/plugins/cvs/.timestamp b/work/plugins/cvs/.timestamp
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/work/plugins/cvs/.timestamp
diff --git a/work/plugins/cvs/META-INF/MANIFEST.MF b/work/plugins/cvs/META-INF/MANIFEST.MF
new file mode 100644
index 0000000..1f52bca
--- /dev/null
+++ b/work/plugins/cvs/META-INF/MANIFEST.MF
@@ -0,0 +1,15 @@
+Manifest-Version: 1.0
+Archiver-Version: Plexus Archiver
+Created-By: Apache Maven
+Built-By: aruna
+Build-Jdk: 1.6.0_20
+Extension-Name: cvs
+Implementation-Title: cvs
+Implementation-Version: 1.2
+Short-Name: cvs
+Long-Name: Hudson CVS Plug-in
+Url: http://wiki.hudson-ci.org/display/HUDSON/CVS+Plugin
+Plugin-Version: 1.2
+Hudson-Version: 1.338
+Plugin-Developers: Kohsuke Kawaguchi:kohsuke:
+
diff --git a/work/plugins/cvs/META-INF/maven/org.jvnet.hudson.plugins/cvs/pom.properties b/work/plugins/cvs/META-INF/maven/org.jvnet.hudson.plugins/cvs/pom.properties
new file mode 100644
index 0000000..1ad095e
--- /dev/null
+++ b/work/plugins/cvs/META-INF/maven/org.jvnet.hudson.plugins/cvs/pom.properties
@@ -0,0 +1,5 @@
+#Generated by Maven
+#Tue Jul 20 16:34:19 PDT 2010
+version=1.2
+groupId=org.jvnet.hudson.plugins
+artifactId=cvs
diff --git a/work/plugins/cvs/META-INF/maven/org.jvnet.hudson.plugins/cvs/pom.xml b/work/plugins/cvs/META-INF/maven/org.jvnet.hudson.plugins/cvs/pom.xml
new file mode 100644
index 0000000..e7b250f
--- /dev/null
+++ b/work/plugins/cvs/META-INF/maven/org.jvnet.hudson.plugins/cvs/pom.xml
@@ -0,0 +1,27 @@
+
+ 4.0.0
+
+ org.jvnet.hudson.plugins
+ plugin
+ 1.338
+ ../pom.xml
+
+ cvs
+ Hudson CVS Plug-in
+ hpi
+ 1.2
+ http://wiki.hudson-ci.org/display/HUDSON/CVS+Plugin
+
+
+
+ kohsuke
+ Kohsuke Kawaguchi
+
+
+
+
+ scm:svn:https://guest@svn.dev.java.net/svn/hudson/tags/cvs-1.2
+ scm:svn:https://svn.dev.java.net/svn/hudson/tags/cvs-1.2
+ https://hudson.dev.java.net/source/browse/hudson/tags/cvs-1.2
+
+
diff --git a/work/plugins/cvs/WEB-INF/classes/META-INF/annotations/hudson.Extension b/work/plugins/cvs/WEB-INF/classes/META-INF/annotations/hudson.Extension
new file mode 100644
index 0000000..f5ced1b
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/META-INF/annotations/hudson.Extension
Binary files differ
diff --git a/work/plugins/cvs/WEB-INF/classes/META-INF/exposed.stapler-beans b/work/plugins/cvs/WEB-INF/classes/META-INF/exposed.stapler-beans
new file mode 100644
index 0000000..c982bae
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/META-INF/exposed.stapler-beans
@@ -0,0 +1,4 @@
+hudson.scm.CVSChangeLogSet.CVSChangeLog
+hudson.scm.CVSChangeLogSet.File
+hudson.scm.CVSSCM
+hudson.scm.CVSSCM.TagAction
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/org/apache/tools/ant/taskdefs/AbstractCvsTask.class b/work/plugins/cvs/WEB-INF/classes/hudson/org/apache/tools/ant/taskdefs/AbstractCvsTask.class
new file mode 100644
index 0000000..c651146
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/org/apache/tools/ant/taskdefs/AbstractCvsTask.class
Binary files differ
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/org/apache/tools/ant/taskdefs/cvslib/CVSEntry.class b/work/plugins/cvs/WEB-INF/classes/hudson/org/apache/tools/ant/taskdefs/cvslib/CVSEntry.class
new file mode 100644
index 0000000..120045b
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/org/apache/tools/ant/taskdefs/cvslib/CVSEntry.class
Binary files differ
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/org/apache/tools/ant/taskdefs/cvslib/ChangeLogParser.class b/work/plugins/cvs/WEB-INF/classes/hudson/org/apache/tools/ant/taskdefs/cvslib/ChangeLogParser.class
new file mode 100644
index 0000000..bf78b36
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/org/apache/tools/ant/taskdefs/cvslib/ChangeLogParser.class
Binary files differ
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/org/apache/tools/ant/taskdefs/cvslib/ChangeLogTask.class b/work/plugins/cvs/WEB-INF/classes/hudson/org/apache/tools/ant/taskdefs/cvslib/ChangeLogTask.class
new file mode 100644
index 0000000..188f1b2
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/org/apache/tools/ant/taskdefs/cvslib/ChangeLogTask.class
Binary files differ
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/org/apache/tools/ant/taskdefs/cvslib/ChangeLogWriter.class b/work/plugins/cvs/WEB-INF/classes/hudson/org/apache/tools/ant/taskdefs/cvslib/ChangeLogWriter.class
new file mode 100644
index 0000000..613dfd6
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/org/apache/tools/ant/taskdefs/cvslib/ChangeLogWriter.class
Binary files differ
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/org/apache/tools/ant/taskdefs/cvslib/CvsUser.class b/work/plugins/cvs/WEB-INF/classes/hudson/org/apache/tools/ant/taskdefs/cvslib/CvsUser.class
new file mode 100644
index 0000000..3c68530
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/org/apache/tools/ant/taskdefs/cvslib/CvsUser.class
Binary files differ
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/org/apache/tools/ant/taskdefs/cvslib/RCSFile.class b/work/plugins/cvs/WEB-INF/classes/hudson/org/apache/tools/ant/taskdefs/cvslib/RCSFile.class
new file mode 100644
index 0000000..f83a8c5
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/org/apache/tools/ant/taskdefs/cvslib/RCSFile.class
Binary files differ
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/org/apache/tools/ant/taskdefs/cvslib/RedirectingOutputStream.class b/work/plugins/cvs/WEB-INF/classes/hudson/org/apache/tools/ant/taskdefs/cvslib/RedirectingOutputStream.class
new file mode 100644
index 0000000..08df993
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/org/apache/tools/ant/taskdefs/cvslib/RedirectingOutputStream.class
Binary files differ
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/org/apache/tools/ant/taskdefs/cvslib/RedirectingStreamHandler.class b/work/plugins/cvs/WEB-INF/classes/hudson/org/apache/tools/ant/taskdefs/cvslib/RedirectingStreamHandler.class
new file mode 100644
index 0000000..e6b307c
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/org/apache/tools/ant/taskdefs/cvslib/RedirectingStreamHandler.class
Binary files differ
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogParser.class b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogParser.class
new file mode 100644
index 0000000..f15ef49
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogParser.class
Binary files differ
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet$CVSChangeLog$1.class b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet$CVSChangeLog$1.class
new file mode 100644
index 0000000..0919b0a
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet$CVSChangeLog$1.class
Binary files differ
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet$CVSChangeLog.class b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet$CVSChangeLog.class
new file mode 100644
index 0000000..d39e0ad
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet$CVSChangeLog.class
Binary files differ
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet$File.class b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet$File.class
new file mode 100644
index 0000000..d4abcb8
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet$File.class
Binary files differ
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet$Revision.class b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet$Revision.class
new file mode 100644
index 0000000..07b5620
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet$Revision.class
Binary files differ
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet.class b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet.class
new file mode 100644
index 0000000..d5ca3dc
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet.class
Binary files differ
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/CVSChangeLog.javadoc b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/CVSChangeLog.javadoc
new file mode 100644
index 0000000..2493a52
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/CVSChangeLog.javadoc
@@ -0,0 +1 @@
+#Tue Jul 20 16:33:31 PDT 2010
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/File.javadoc b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/File.javadoc
new file mode 100644
index 0000000..c0b5209
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/File.javadoc
@@ -0,0 +1,3 @@
+#Tue Jul 20 16:33:31 PDT 2010
+getFullName()=\ Gets the full path name in the CVS repository,\n like "/module/foo/bar/zot.c"\n\n
\n Unlike {@link \#getName()}, this method returns\n a full name from the root of the CVS repository.\n
+getName()=\ Gets the path name in the CVS repository, like\n "foo/bar/zot.c"\n\n
\n The path is relative to the workspace root.\n
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/digest.jelly b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/digest.jelly
new file mode 100644
index 0000000..f273ec2
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/digest.jelly
@@ -0,0 +1,47 @@
+
+
+
+
+ Displays the CVS change log digest.
+
+ If specified, this is prepended in links to change details.
+
+
+
+
+
+ ${%No changes.}
+
+
+ ${%Changes}
+
+
+
+
+
+
+
+
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/digest_de.properties b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/digest_de.properties
new file mode 100644
index 0000000..a1f799e
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/digest_de.properties
@@ -0,0 +1,25 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Simon Wiest
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+No\ changes.=Keine Änderungen.
+Changes=Änderungen
+detail=Details
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/digest_es.properties b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/digest_es.properties
new file mode 100644
index 0000000..2eb42be
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/digest_es.properties
@@ -0,0 +1,25 @@
+# The MIT License
+#
+# Copyright (c) 2004-2010, Sun Microsystems, Inc.
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Changes=cambios
+No\ changes.=Sin cambios.
+detail=Detalles
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/digest_fr.properties b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/digest_fr.properties
new file mode 100644
index 0000000..8b26b19
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/digest_fr.properties
@@ -0,0 +1,25 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Eric Lefevre-Ardant
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+No\ changes.=Aucun changement.
+Changes=Changements
+detail=détails
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/digest_ja.properties b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/digest_ja.properties
new file mode 100644
index 0000000..72bb7a9
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/digest_ja.properties
@@ -0,0 +1,25 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Seiji Sogabe, id:cactusman
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Changes=\u5909\u66f4
+detail=\u8a73\u7d30
+No\ changes.=\u5909\u66f4\u70b9\u306f\u3042\u308a\u307e\u305b\u3093\u3002
\ No newline at end of file
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/digest_ko.properties b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/digest_ko.properties
new file mode 100644
index 0000000..b170280
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/digest_ko.properties
@@ -0,0 +1,23 @@
+# The MIT License
+#
+# Copyright (c) 2004-2010, Sun Microsystems, Inc.
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+No\ changes.=\uBCC0\uACBD \uC5C6\uC74C.
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/digest_nb_NO.properties b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/digest_nb_NO.properties
new file mode 100644
index 0000000..20b868f
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/digest_nb_NO.properties
@@ -0,0 +1,23 @@
+# The MIT License
+#
+# Copyright (c) 2004-2010, Sun Microsystems, Inc.
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+No\ changes.=Ingen forandringer.
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/digest_nl.properties b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/digest_nl.properties
new file mode 100644
index 0000000..c381f6a
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/digest_nl.properties
@@ -0,0 +1,25 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, id:sorokh
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Changes=Wijzigingen
+No\ changes.=Geen wijzigingen
+detail=details
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/digest_pt_BR.properties b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/digest_pt_BR.properties
new file mode 100644
index 0000000..28a8e6d
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/digest_pt_BR.properties
@@ -0,0 +1,23 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Reginaldo L. Russinholi
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+No\ changes.= Sem mudan\u00E7as.
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/digest_ru.properties b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/digest_ru.properties
new file mode 100644
index 0000000..b518bd2
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/digest_ru.properties
@@ -0,0 +1,23 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Mike Salnikov
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+No\ changes.=\u041d\u0435\u0442 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439.
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/digest_tr.properties b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/digest_tr.properties
new file mode 100644
index 0000000..40ac076
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/digest_tr.properties
@@ -0,0 +1,23 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Oguz Dag
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+No\ changes.=Herhangi\ bir\ de\u011fi\u015fiklik\ yok.
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/index.jelly b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/index.jelly
new file mode 100644
index 0000000..21e0efa
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/index.jelly
@@ -0,0 +1,67 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/index_de.properties b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/index_de.properties
new file mode 100644
index 0000000..53437f2
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/index_de.properties
@@ -0,0 +1,23 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Simon Wiest
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Summary=Zusammenfassung
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/index_es.properties b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/index_es.properties
new file mode 100644
index 0000000..d514d23
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/index_es.properties
@@ -0,0 +1,23 @@
+# The MIT License
+#
+# Copyright (c) 2004-2010, Sun Microsystems, Inc.
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Summary=Resumen
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/index_fr.properties b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/index_fr.properties
new file mode 100644
index 0000000..4eb0316
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/index_fr.properties
@@ -0,0 +1,23 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Eric Lefevre-Ardant
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Summary=Résumé
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/index_ja.properties b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/index_ja.properties
new file mode 100644
index 0000000..1284097
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/index_ja.properties
@@ -0,0 +1,23 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, id:cactusman
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Summary=\u8981\u7d04
\ No newline at end of file
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/index_ko.properties b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/index_ko.properties
new file mode 100644
index 0000000..f018a03
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/index_ko.properties
@@ -0,0 +1,23 @@
+# The MIT License
+#
+# Copyright (c) 2004-2010, Sun Microsystems, Inc.
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Summary=\uC694\uC57D
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/index_nl.properties b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/index_nl.properties
new file mode 100644
index 0000000..194886c
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/index_nl.properties
@@ -0,0 +1,23 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, id:sorokh
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Summary=Samenvatting
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/index_pt_BR.properties b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/index_pt_BR.properties
new file mode 100644
index 0000000..6637391
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/index_pt_BR.properties
@@ -0,0 +1,23 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Reginaldo L. Russinholi
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Summary=Sum\u00E1rio
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/index_ru.properties b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/index_ru.properties
new file mode 100644
index 0000000..3cb4f00
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/index_ru.properties
@@ -0,0 +1,23 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Mike Salnikov
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Summary=\u0421\u0432\u043e\u0434\u043a\u0430
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/index_tr.properties b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/index_tr.properties
new file mode 100644
index 0000000..2fabc1e
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSChangeLogSet/index_tr.properties
@@ -0,0 +1,23 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Oguz Dag
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Summary=\u00d6zet
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSRepositoryBrowser.class b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSRepositoryBrowser.class
new file mode 100644
index 0000000..151032f
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSRepositoryBrowser.class
Binary files differ
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM$1.class b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM$1.class
new file mode 100644
index 0000000..9ffc36e
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM$1.class
Binary files differ
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM$2.class b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM$2.class
new file mode 100644
index 0000000..f831675
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM$2.class
Binary files differ
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM$3.class b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM$3.class
new file mode 100644
index 0000000..ff02601
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM$3.class
Binary files differ
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM$4$1.class b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM$4$1.class
new file mode 100644
index 0000000..99fa339
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM$4$1.class
Binary files differ
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM$4.class b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM$4.class
new file mode 100644
index 0000000..a6773c8
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM$4.class
Binary files differ
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM$BuildExceptionWithLog.class b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM$BuildExceptionWithLog.class
new file mode 100644
index 0000000..454922b
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM$BuildExceptionWithLog.class
Binary files differ
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM$ChangeLogResult.class b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM$ChangeLogResult.class
new file mode 100644
index 0000000..405a929
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM$ChangeLogResult.class
Binary files differ
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM$DescriptorImpl$RepositoryBrowser.class b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM$DescriptorImpl$RepositoryBrowser.class
new file mode 100644
index 0000000..6dc22b5
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM$DescriptorImpl$RepositoryBrowser.class
Binary files differ
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM$DescriptorImpl.class b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM$DescriptorImpl.class
new file mode 100644
index 0000000..9f8b0fa
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM$DescriptorImpl.class
Binary files differ
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM$StickyDateCleanUpTask.class b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM$StickyDateCleanUpTask.class
new file mode 100644
index 0000000..2fee6f8
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM$StickyDateCleanUpTask.class
Binary files differ
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM$TagAction.class b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM$TagAction.class
new file mode 100644
index 0000000..043ae5a
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM$TagAction.class
Binary files differ
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM$TagActionDescriptor.class b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM$TagActionDescriptor.class
new file mode 100644
index 0000000..925597f
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM$TagActionDescriptor.class
Binary files differ
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM$TagWorkerThread.class b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM$TagWorkerThread.class
new file mode 100644
index 0000000..d9523bc
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM$TagWorkerThread.class
Binary files differ
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM.class b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM.class
new file mode 100644
index 0000000..4c0b8ba
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM.class
Binary files differ
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM.javadoc b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM.javadoc
new file mode 100644
index 0000000..06828f7
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM.javadoc
@@ -0,0 +1,3 @@
+#Tue Jul 20 16:33:31 PDT 2010
+isTag()=\ Returns true if {@link \#getBranch()} represents a tag.\n
\n This causes Hudson to stop using "-D" option while check out and update.\n
+getBranch()=\ Branch to build. Null to indicate the trunk.\n
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM.stapler b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM.stapler
new file mode 100644
index 0000000..dddb9b7
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM.stapler
@@ -0,0 +1,2 @@
+#Tue Jul 20 16:33:31 PDT 2010
+constructor=cvsRoot,allModules,branch,cvsRsh,canUseUpdate,legacy,isTag,excludedRegions
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/DescriptorImpl/doCheckBranch.stapler b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/DescriptorImpl/doCheckBranch.stapler
new file mode 100644
index 0000000..2890eea
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/DescriptorImpl/doCheckBranch.stapler
@@ -0,0 +1 @@
+value
\ No newline at end of file
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/DescriptorImpl/doCheckCvsExe.stapler b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/DescriptorImpl/doCheckCvsExe.stapler
new file mode 100644
index 0000000..2890eea
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/DescriptorImpl/doCheckCvsExe.stapler
@@ -0,0 +1 @@
+value
\ No newline at end of file
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/DescriptorImpl/doCheckCvsRoot.stapler b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/DescriptorImpl/doCheckCvsRoot.stapler
new file mode 100644
index 0000000..2890eea
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/DescriptorImpl/doCheckCvsRoot.stapler
@@ -0,0 +1 @@
+value
\ No newline at end of file
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/DescriptorImpl/doCheckCvspassFile.stapler b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/DescriptorImpl/doCheckCvspassFile.stapler
new file mode 100644
index 0000000..2890eea
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/DescriptorImpl/doCheckCvspassFile.stapler
@@ -0,0 +1 @@
+value
\ No newline at end of file
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/DescriptorImpl/doCheckExcludeRegions.stapler b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/DescriptorImpl/doCheckExcludeRegions.stapler
new file mode 100644
index 0000000..2890eea
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/DescriptorImpl/doCheckExcludeRegions.stapler
@@ -0,0 +1 @@
+value
\ No newline at end of file
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/DescriptorImpl/enterPassword.jelly b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/DescriptorImpl/enterPassword.jelly
new file mode 100644
index 0000000..914503b
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/DescriptorImpl/enterPassword.jelly
@@ -0,0 +1,49 @@
+
+
+
+
+
+
+
Enter CVS password
+
+ CVS stores passwords for :pserver CVSROOTs, per user. This page lets you add/replace
+ password to those entries.
+
+
+
+
\ No newline at end of file
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/TagAction.javadoc b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/TagAction.javadoc
new file mode 100644
index 0000000..2493a52
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/TagAction.javadoc
@@ -0,0 +1 @@
+#Tue Jul 20 16:33:31 PDT 2010
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/TagAction/doCheckTag.stapler b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/TagAction/doCheckTag.stapler
new file mode 100644
index 0000000..2890eea
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/TagAction/doCheckTag.stapler
@@ -0,0 +1 @@
+value
\ No newline at end of file
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/TagAction/help-tagAll.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/TagAction/help-tagAll.html
new file mode 100644
index 0000000..d71762c
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/TagAction/help-tagAll.html
@@ -0,0 +1,5 @@
+
+ Instead of tagging just build, tag all the builds of the upstream projects that
+ this build depends on. This allows you to snapshot the exact versions of
+ all the builds involved.
+
\ No newline at end of file
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/TagAction/help-tagAll_de.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/TagAction/help-tagAll_de.html
new file mode 100644
index 0000000..c171c2c
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/TagAction/help-tagAll_de.html
@@ -0,0 +1,6 @@
+
+ Statt nur diesen Build zu kennzeichnnen ("taggen"), werden alle Builds der
+ vorgelagerten Projekte gekennzeichnet, auf denen dieser Build basiert.
+ Dies erlaubt Ihnen, die exakten Version aller Builds festzuhalten, die zu
+ diesem Build beigetragen haben.
+
\ No newline at end of file
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/TagAction/help-tagAll_fr.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/TagAction/help-tagAll_fr.html
new file mode 100644
index 0000000..5d60d39
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/TagAction/help-tagAll_fr.html
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/TagAction/help-tagAll_ja.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/TagAction/help-tagAll_ja.html
new file mode 100644
index 0000000..0159ee1
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/TagAction/help-tagAll_ja.html
@@ -0,0 +1,4 @@
+
\ No newline at end of file
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/TagAction/help-tagAll_nl.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/TagAction/help-tagAll_nl.html
new file mode 100644
index 0000000..2f5d3ab
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/TagAction/help-tagAll_nl.html
@@ -0,0 +1,4 @@
+
+Label alle bouwpogingen van de bovenliggende projecten, waar deze bouwpoging op steunt.
+Dit laat u toe om de relatie met alle gerefereerde bouwpogingen vast te leggen.
+
\ No newline at end of file
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/TagAction/help-tagAll_pt_BR.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/TagAction/help-tagAll_pt_BR.html
new file mode 100644
index 0000000..3ec3166
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/TagAction/help-tagAll_pt_BR.html
@@ -0,0 +1,5 @@
+
+ Ao invés de marcar apenas a construção, marque todas as construções dos projetos pai que
+ esta construção depende. Isto permite que você pegue uma cópia das versões exatas de
+ todas as construções envolvidas.
+
\ No newline at end of file
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/TagAction/help-tagAll_ru.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/TagAction/help-tagAll_ru.html
new file mode 100644
index 0000000..440b012
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/TagAction/help-tagAll_ru.html
@@ -0,0 +1,5 @@
+
\ No newline at end of file
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/TagAction/help-tagAll_tr.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/TagAction/help-tagAll_tr.html
new file mode 100644
index 0000000..949b320
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/TagAction/help-tagAll_tr.html
@@ -0,0 +1,5 @@
+
+ Sadece mevcut yapılandırmayı tag'lemek yerine, bu yapılandırmanın bağlı bulunduğu
+ diğer upstream projelerin tüm yapılandırmalarını tag'leyin. Böylece dahil olan
+ tüm yapılandırmaların kesin versiyonlarının tutulduğu bir görüntüyüe sahip olabilirsiniz.
+
\ No newline at end of file
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/TagAction/tagForm.jelly b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/TagAction/tagForm.jelly
new file mode 100644
index 0000000..6450d25
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/TagAction/tagForm.jelly
@@ -0,0 +1,120 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/TagAction/tagForm_de.properties b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/TagAction/tagForm_de.properties
new file mode 100644
index 0000000..ca32814
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/TagAction/tagForm_de.properties
@@ -0,0 +1,28 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Simon Wiest
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Choose\ the\ CVS\ tag\ name\ for\ this\ build=Wählen Sie das CVS-Tag für diesen Build.
+Tag=Tag
+This\ build\ is\ already\ tagged\ as=Dieser Build ist bereits markiert ("getaggt") als
+Create\ another\ tag=Neue Markierung (Tag) anlegen
+Upstream\ tags=Vorgelagerte Tags
+Build=Build
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/TagAction/tagForm_es.properties b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/TagAction/tagForm_es.properties
new file mode 100644
index 0000000..502c306
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/TagAction/tagForm_es.properties
@@ -0,0 +1,28 @@
+# The MIT License
+#
+# Copyright (c) 2004-2010, Sun Microsystems, Inc.
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Upstream\ tags=Tags padres
+Tag=Etiqueta
+This\ build\ is\ already\ tagged\ as=Esta ejecución ya se ha etiquetado como
+Build=Ejecución
+Choose\ the\ CVS\ tag\ name\ for\ this\ build=Elije una etiqueta CVS para esta ejecución
+Create\ another\ tag=Crear otra etiqueta
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/TagAction/tagForm_fr.properties b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/TagAction/tagForm_fr.properties
new file mode 100644
index 0000000..4f5215f
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/TagAction/tagForm_fr.properties
@@ -0,0 +1,28 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Eric Lefevre-Ardant
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Choose\ the\ CVS\ tag\ name\ for\ this\ build=Choisissez le tag CVS pour ce build
+Tag=Appliquer le Tag
+This\ build\ is\ already\ tagged\ as=Ce build est déjà taggué par
+Create\ another\ tag=Créer un autre tag
+Upstream\ tags=Tags amont
+Build=
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/TagAction/tagForm_ja.properties b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/TagAction/tagForm_ja.properties
new file mode 100644
index 0000000..ff3b189
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/TagAction/tagForm_ja.properties
@@ -0,0 +1,28 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Seiji Sogabe
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Choose\ the\ CVS\ tag\ name\ for\ this\ build=
+Tag=\u30bf\u30b0
+This\ build\ is\ already\ tagged\ as=
+Create\ another\ tag=
+Upstream\ tags=
+Build=\u30d3\u30eb\u30c9
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/TagAction/tagForm_nl.properties b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/TagAction/tagForm_nl.properties
new file mode 100644
index 0000000..100da9b
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/TagAction/tagForm_nl.properties
@@ -0,0 +1,28 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, id:sorokh
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Choose\ the\ CVS\ tag\ name\ for\ this\ build=Kies het te gebruiken CVS label voor deze bouwpoging
+Tag=Label
+This\ build\ is\ already\ tagged\ as=Deze bouwpoging werd al gelabeld.
+Create\ another\ tag=Cre\u00EBer een ander label
+Upstream\ tags=Bovenliggende labels
+Build=Bouwpoging
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/TagAction/tagForm_pt_BR.properties b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/TagAction/tagForm_pt_BR.properties
new file mode 100644
index 0000000..70adec4
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/TagAction/tagForm_pt_BR.properties
@@ -0,0 +1,28 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Reginaldo L. Russinholi
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Choose\ the\ CVS\ tag\ name\ for\ this\ build=Escolha o nome da marca\u00E7\u00E3o CVS para esta constru\u00E7\u00E3o
+Tag=Marca\u00E7\u00E3o
+This\ build\ is\ already\ tagged\ as=Esta constru\u00E7\u00E3o j\u00E1 est\u00E1 marcada como
+Create\ another\ tag=Criar uma outra marca\u00E7\u00E3o
+Upstream\ tags=Marca\u00E7\u00F5es pai
+Build=Constru\u00E7\u00E3o
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/TagAction/tagForm_ru.properties b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/TagAction/tagForm_ru.properties
new file mode 100644
index 0000000..0029b55
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/TagAction/tagForm_ru.properties
@@ -0,0 +1,28 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Mike Salnikov
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Choose\ the\ CVS\ tag\ name\ for\ this\ build=\u0412\u044b\u0431\u0435\u0440\u0438\u0442\u0435 \u0438\u043c\u044f \u043c\u0435\u0442\u043a\u0438 \u0434\u043b\u044f \u044d\u0442\u043e\u0439 \u0441\u0431\u043e\u0440\u043a\u0438
+Tag=\u041c\u0435\u0442\u043a\u0430
+This\ build\ is\ already\ tagged\ as=\u042d\u0442\u0430 \u0441\u0431\u043e\u0440\u043a\u0430 \u0443\u0436\u0435 \u043f\u043e\u043c\u0435\u0447\u0435\u043d\u0430 \u043a\u0430\u043a
+Create\ another\ tag=\u0421\u043e\u0437\u0434\u0430\u0442\u044c \u043d\u043e\u0432\u0443\u044e \u043c\u0435\u0442\u043a\u0443
+Upstream\ tags=\u0412\u043e\u0441\u0445\u043e\u0434\u044f\u0449\u0438\u0435 \u043c\u0435\u0442\u043a\u0438
+Build=\u0421\u0431\u043e\u0440\u043a\u0430
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/TagAction/tagForm_tr.properties b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/TagAction/tagForm_tr.properties
new file mode 100644
index 0000000..2cd3504
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/TagAction/tagForm_tr.properties
@@ -0,0 +1,28 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Oguz Dag
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Choose\ the\ CVS\ tag\ name\ for\ this\ build=Bu yap\u0131land\u0131rma i\u00e7in tag ismi se\u00e7iniz
+Tag=
+This\ build\ is\ already\ tagged\ as=Bu yap\u0131land\u0131rma zaten \u015fu \u015fekilde tag''lendi,
+Create\ another\ tag=Ba\u015fka bir tag olu\u015ftur
+Upstream\ tags=Upstream tag''leri
+Build=Yap\u0131land\u0131rma
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/config.jelly b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/config.jelly
new file mode 100644
index 0000000..fa584e6
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/config.jelly
@@ -0,0 +1,55 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ ${%legacyModeDescription}
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/config.properties b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/config.properties
new file mode 100644
index 0000000..94d0cd4
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/config.properties
@@ -0,0 +1,24 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Modules=Module(s)
+legacyModeDescription=(run CVS in a way compatible with older versions of Hudson <1.21)
\ No newline at end of file
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/config_de.properties b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/config_de.properties
new file mode 100644
index 0000000..5164c0a
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/config_de.properties
@@ -0,0 +1,29 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Simon Wiest
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Modules=Module
+Branch=Zweig
+This\ is\ a\ tag,\ not\ a\ branch=Dies ist ein Tag, kein Zweig (branch).
+Legacy\ mode=Legacy-Modus
+Use\ update=Update-Kommando verwenden
+legacyModeDescription=(Führt CVS in einem Modus aus, der mit älteren Hudson-Versionen <1.21 kompatibel ist.)
+Excluded\ Regions=Ausgeschlossene Bereiche
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/config_es.properties b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/config_es.properties
new file mode 100644
index 0000000..6d7b1a1
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/config_es.properties
@@ -0,0 +1,31 @@
+# The MIT License
+#
+# Copyright (c) 2004-2010, Sun Microsystems, Inc.
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+# Module(s)
+Modules=Módulo(s)
+Excluded\ Regions=Regiones excluidas
+Use\ update=Utilizar actualización 'update'
+Legacy\ mode=Modo 'Legacy'
+# (run CVS in a way compatible with older versions of Hudson <1.21)
+legacyModeDescription=(Ejecutar CVS en modo compatible con viejas versiondes de Hudson <1.21)
+Branch=Rama
+This\ is\ a\ tag,\ not\ a\ branch=Esto es una etiqueta, no una rama
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/config_fr.properties b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/config_fr.properties
new file mode 100644
index 0000000..503928a
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/config_fr.properties
@@ -0,0 +1,29 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Eric Lefevre-Ardant
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Modules=
+Branch=Branche
+This\ is\ a\ tag,\ not\ a\ branch=Ceci est un tag et non une branche
+Legacy\ mode=Mode legacy
+Use\ update=Utiliser update
+legacyModeDescription=(exécute CVS de façon compatible avec les anciennes versions de Hudson <1.21)
+Excluded\ Regions=Régions exclues
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/config_ja.properties b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/config_ja.properties
new file mode 100644
index 0000000..1673d14
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/config_ja.properties
@@ -0,0 +1,29 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Modules=\u30E2\u30B8\u30E5\u30FC\u30EB
+Branch=\u30D6\u30E9\u30F3\u30C1
+This\ is\ a\ tag,\ not\ a\ branch=\u3053\u308C\u306F\u30D6\u30E9\u30F3\u30C1\u3067\u306F\u306A\u304F\u3066\u30BF\u30B0
+Legacy\ mode=\u4E92\u63DB\u6027\u30E2\u30FC\u30C9
+Use\ update=cvs update\u3092\u5229\u7528
+legacyModeDescription=(1.21\u4EE5\u524D\u306EHudson\u3068\u4E92\u63DB\u6027\u306E\u3042\u308B\u52D5\u4F5C\u3092\u3057\u307E\u3059)
+Excluded\ Regions=\u5BFE\u8C61\u5916\u3068\u3059\u308B\u7BC4\u56F2
\ No newline at end of file
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/config_nl.properties b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/config_nl.properties
new file mode 100644
index 0000000..8b5e8dd
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/config_nl.properties
@@ -0,0 +1,27 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, id:sorokh
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Modules=Modules
+Branch=Tak
+This\ is\ a\ tag,\ not\ a\ branch=Dit is een label en geen vertakking.
+Legacy\ mode="Legacy"-mode
+Use\ update=Gebruik het "update"-commando
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/config_pt_BR.properties b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/config_pt_BR.properties
new file mode 100644
index 0000000..abec90f
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/config_pt_BR.properties
@@ -0,0 +1,27 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Reginaldo L. Russinholi
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Modules=M\u00F3dulos
+Branch=
+This\ is\ a\ tag,\ not\ a\ branch=Isto \u00E9 uma tag, n\u00E3o um branch
+Legacy\ mode=Modo legado
+Use\ update=Usar atualiza\u00E7\u00E3o
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/config_ru.properties b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/config_ru.properties
new file mode 100644
index 0000000..91a77d1
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/config_ru.properties
@@ -0,0 +1,28 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Mike Salnikov
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Modules=\u041c\u043e\u0434\u0443\u043b\u0438
+Branch=\u0412\u0435\u0442\u043a\u0438
+This\ is\ a\ tag,\ not\ a\ branch=\u042d\u0442\u043e \u0442\u044d\u0433, \u0430 \u043d\u0435 \u0432\u0435\u0442\u043a\u0430
+Legacy\ mode="\u0422\u0440\u0430\u0434\u0438\u0446\u0438\u043e\u043d\u043d\u044b\u0439" \u0440\u0435\u0436\u0438\u043c
+Use\ update=\u0418\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0435 (update)
+legacyModeDescription=(\u0437\u0430\u043f\u0443\u0441\u043a\u0430\u0442\u044c CVS \u0432 \u0441\u043e\u0432\u043c\u0435\u0441\u0442\u0438\u043c\u043e\u043c \u0441\u043e \u0441\u0442\u0430\u0440\u044b\u043c\u0438 \u0432\u0435\u0440\u0441\u0438\u044f\u043c\u0438 Hudson (<1.21) \u0440\u0435\u0436\u0438\u043c\u043e\u043c)
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/config_tr.properties b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/config_tr.properties
new file mode 100644
index 0000000..3bb1386
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/config_tr.properties
@@ -0,0 +1,29 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Oguz Dag
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Modules=Mod\u00fcller
+Branch=
+This\ is\ a\ tag,\ not\ a\ branch=Bu bir (tag), (branch) de\u011fil
+Legacy\ mode=Miras modu
+Use\ update=G\u00fcncelleme \u00f6zelli\u011fini kullan
+legacyModeDescription=(CVS'i Hudson'\u0131n 1.21 versiyonundan daha \u00f6nceki versiyonlar\u0131 ile uyumlu bir \u015fekilde \u00e7al\u0131st\u0131r)
+
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/global.jelly b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/global.jelly
new file mode 100644
index 0000000..a33075c
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/global.jelly
@@ -0,0 +1,49 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/global_de.properties b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/global_de.properties
new file mode 100644
index 0000000..d21edea
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/global_de.properties
@@ -0,0 +1,26 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Simon Wiest
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Check\ CVS\ version=Überprüfe CVS Version
+cvs\ executable=CVS Befehl
+.cvspass\ file=.cvspass Datei
+Disable\ CVS\ compression=Deaktiviere CVS Kompression
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/global_es.properties b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/global_es.properties
new file mode 100644
index 0000000..8c460f8
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/global_es.properties
@@ -0,0 +1,26 @@
+# The MIT License
+#
+# Copyright (c) 2004-2010, Sun Microsystems, Inc.
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Disable\ CVS\ compression=Desactivar compresión CVS
+cvs\ executable=ejecutable para "cvs"
+Check\ CVS\ version=Comprobar la versión de CVS
+.cvspass\ file=Fichero ".cvspass"
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/global_fr.properties b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/global_fr.properties
new file mode 100644
index 0000000..400a280
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/global_fr.properties
@@ -0,0 +1,26 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Eric Lefevre-Ardant
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Check\ CVS\ version=Vérifier la version de CVS
+cvs\ executable=Exécutable cvs
+.cvspass\ file=Fichier .cvspass
+Disable\ CVS\ compression=Désactiver la compression CVS
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/global_ja.properties b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/global_ja.properties
new file mode 100644
index 0000000..11edb1f
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/global_ja.properties
@@ -0,0 +1,26 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Check\ CVS\ version=CVS\u30d0\u30fc\u30b8\u30e7\u30f3\u306e\u78ba\u8a8d
+cvs\ executable=CVS\u5b9f\u884c\u30d5\u30a1\u30a4\u30eb
+.cvspass\ file=.cvspass\u30d5\u30a1\u30a4\u30eb
+Disable\ CVS\ compression=CVS\u306e\u901a\u4fe1\u3092\u5727\u7e2e\u3057\u306a\u3044
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/global_nl.properties b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/global_nl.properties
new file mode 100644
index 0000000..2a40ab9
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/global_nl.properties
@@ -0,0 +1,26 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, id:sorokh
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Check\ CVS\ version=Controleer CVS versie
+cvs\ executable=cvs programma
+.cvspass\ file=.cvspass bestand
+Disable\ CVS\ compression=Schakel CVS-compressie uit
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/global_pt_BR.properties b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/global_pt_BR.properties
new file mode 100644
index 0000000..8df7bce
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/global_pt_BR.properties
@@ -0,0 +1,26 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Reginaldo L. Russinholi
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Check\ CVS\ version=Verificar vers\u00E3o do CVS
+cvs\ executable=execut\u00E1vel do cvs
+.cvspass\ file=arquivo .cvspass
+Disable\ CVS\ compression=Desabilitar compress\u00E3o CVS
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/global_ru.properties b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/global_ru.properties
new file mode 100644
index 0000000..c31176c
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/global_ru.properties
@@ -0,0 +1,26 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Mike Salnikov
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Check\ CVS\ version=\u041F\u0440\u043E\u0432\u0435\u0440\u044F\u0442\u044C \u0432\u0435\u0440\u0441\u0438\u044E CVS
+cvs\ executable=\u0418\u0441\u043f\u043e\u043b\u043d\u044f\u0435\u043c\u044b\u0439 \u0444\u0430\u0439\u043b CVS
+.cvspass\ file=\u0424\u0430\u0439\u043b .cvspass
+Disable\ CVS\ compression=\u041e\u0442\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0441\u0436\u0430\u0442\u0438\u0435 CVS
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/global_tr.properties b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/global_tr.properties
new file mode 100644
index 0000000..09c8feb
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/global_tr.properties
@@ -0,0 +1,26 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Oguz Dag
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Check\ CVS\ version=CVS versiyonunu kontrol et
+cvs\ executable=\u00c7al\u0131\u015ft\u0131r\u0131labilir\ cvs\ dosyas\u0131
+.cvspass\ file=.cvspass dosyas\u0131
+Disable\ CVS\ compression=CVS\ s\u0131k\u0131\u015ft\u0131rmay\u0131\ devre\ d\u0131\u015f\u0131\ b\u0131rak
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-allModules.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-allModules.html
new file mode 100644
index 0000000..31f0f5e
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-allModules.html
@@ -0,0 +1,7 @@
+
+ The CVS module name(s) in the given CVSROOT to check out.
+ Multiple modules can be specified by separating them by a whitespace.
+
+ If your module name contains whitespace, you can escape by writing it as '\ '.
+ For example "foo\ bar zot" will specify two modules "foo bar" and "zot".
+
\ No newline at end of file
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-allModules_de.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-allModules_de.html
new file mode 100644
index 0000000..f7bcb07
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-allModules_de.html
@@ -0,0 +1,8 @@
+
+ CVS-Modulnamen im angegebenen CVSROOT, die ausgecheckt werden sollen.
+ Mehrere Modulnamen können - durch Leerzeichen getrennt - angegeben werden.
+
+ Wenn Ihr Modulname ein Leerzeichen enthält, stellen Sie dem Leezeichen ein
+ '\' voran. Beispiel: Die Eingabe "foo\ bar zot" spezifiziert die zwei Module
+ "foo bar" und "zot".
+
\ No newline at end of file
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-allModules_fr.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-allModules_fr.html
new file mode 100644
index 0000000..5ad8517
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-allModules_fr.html
@@ -0,0 +1,10 @@
+
+ Le(s) nom(s) de modules CVS dans le CVSROOT à récupérer.
+ De multiples modules peuvent être spécifiés en les séparant par un
+ espace.
+
+ Si le nom de votre module contient des espaces, vous pouvez les
+ échapper avec '\ '.
+ Par exemple, "foo\ bar zot" fait référence à deux modules : "foo bar"
+ et "zot".
+
\ No newline at end of file
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-allModules_ja.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-allModules_ja.html
new file mode 100644
index 0000000..cce71d8
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-allModules_ja.html
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-allModules_nl.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-allModules_nl.html
new file mode 100644
index 0000000..7fd84e4
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-allModules_nl.html
@@ -0,0 +1,8 @@
+
+De naam van de CVS module(s) die vanuit de opgegeven CVSROOT opgehaald dienen te worden.
+ Meerdere modules kunnen, door spaties gescheiden, opgegeven te worden.
+
+ Indien uw modulenaam spaties bevat, dan kunt u die vrijware door deze te beschermen met '\ '.
+
+Vb. "foo\ bar zot" refereert naar twee modules, nl. "foo bar" en "zot".
+
\ No newline at end of file
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-allModules_pt_BR.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-allModules_pt_BR.html
new file mode 100644
index 0000000..3eb96c9
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-allModules_pt_BR.html
@@ -0,0 +1,7 @@
+
+ O(s) nome(s) do(s) módulo(s) CVS no CVSROOT para fazer o check out.
+ Módulos múltiplos podem ser especificados separando-os por espaços em branco.
+
+ Se seu nome de módulo contém espaço em branco, você pode escapar ele escrevendo-o assim '\ '.
+ Por exemplo "foo\ bar zot" especificará dois módulos "foo bar" e "zot".
+
\ No newline at end of file
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-allModules_ru.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-allModules_ru.html
new file mode 100644
index 0000000..65db358
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-allModules_ru.html
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-allModules_tr.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-allModules_tr.html
new file mode 100644
index 0000000..ed990e3
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-allModules_tr.html
@@ -0,0 +1,8 @@
+
+ Verilen CVSROOT içerisinden check-out edilecek CVS modül isimleridir.
+ Birden fazla modül boşluk karakteri ile ayrılarak belirtilebilir.
+
+ Eğer modül isminizde hali hazırda boşluk karakteri var ise, '\ ' şeklinde yazarak
+ bu problemi çözebilirsiniz. Mesela, "foo\ bar zot" yazılırsa bu iki modülün, "foo bar" ve
+ "zot" modüllerinin kullanılacağı anlamına gelir.
+
\ No newline at end of file
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-branch.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-branch.html
new file mode 100644
index 0000000..4c2e946
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-branch.html
@@ -0,0 +1,10 @@
+
+ If set, Hudson will run CVS with -r to build a particular branch.
+ If left empty, Hudson will build the trunk.
+
+
+ Normally, Hudson runs cvs check-out and update with the -D date option
+ to make sure it gets a coherent snapshot of the repository and better build
+ reproducibility, but this interferes if the branch name specified here is actually
+ a tag name. Telling Hudson that the name is a tag would fix this problem.
+
\ No newline at end of file
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-branch_de.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-branch_de.html
new file mode 100644
index 0000000..aec5291
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-branch_de.html
@@ -0,0 +1,11 @@
+
+ Wenn gesetzt, führt Hudson CVS mit der Option -r aus, um einen
+ bestimmten Zweig (branch) zu bauen. Wenn leer, wird Hudson die Hauptlinie (trunk)
+ bauen.
+
+ Im Regelfall startet Hudson CVS check-out und update mit der Option -D date,
+ um kohärente Schnappschüsse des Repositories und damit reproduzierbare Builds sicherzustellen.
+ Dies kann allerdings problematisch werden, falls der hier angegebene Name des Zweigs
+ der Name eines Tags ist. Hudson mitzuteilen, dass es sich um einen Tag-Namen handelt,
+ würde das Problem lösen.
+
\ No newline at end of file
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-branch_fr.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-branch_fr.html
new file mode 100644
index 0000000..11afe45
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-branch_fr.html
@@ -0,0 +1,14 @@
+
\ No newline at end of file
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-branch_ja.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-branch_ja.html
new file mode 100644
index 0000000..0d70ecb
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-branch_ja.html
@@ -0,0 +1,10 @@
+
\ No newline at end of file
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-branch_nl.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-branch_nl.html
new file mode 100644
index 0000000..31544fd
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-branch_nl.html
@@ -0,0 +1,6 @@
+
Indien gedefinieerd, zal Hudson CVS met -r aanroepen teneinde de gespecifieerde broncodetak (branch) te gebuiken.
+Indien u dit veld leeg laat, zal Hudson de stam (trunk) van uw versieboom gebruiken.
+
+
+ Normaal gebruikt Hudson de -D date optie bij het uitvoeren van een cvs bijwerk- (update) of ophaal- (checkout) opdracht, teneinde een coherente snapshot van de repositorie te verkrijgen. Wat op zich resulteert in beter reproduceerbare bouwpogingen. Dit kan echter problemen opleveren indien de opgegeven tak feitelijk een label (tag) is. Aan Hudson kenbaar maken dat u met een label werkt, zal deze problemen oplossen.
+
\ No newline at end of file
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-branch_pt_BR.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-branch_pt_BR.html
new file mode 100644
index 0000000..53e7a0c
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-branch_pt_BR.html
@@ -0,0 +1,10 @@
+
+ Se informado, Hudson executará o CVS com -r para construir um branch específico.
+ Se deixado em branco, Hudson construirá o trunk.
+
+
+ Normalmente, Hudson executa cvs check-out e update com a opção -D data
+ para ter certeza de obter uma cópia coerente do repositório e uma melhor reprodução
+ da construção, mas isto interfere se o nome do branch especificado aqui for na verdade
+ um nome de marcação. Dizendo para o Hudson que o nome é uma marcação resolverá este problema.
+
\ No newline at end of file
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-branch_ru.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-branch_ru.html
new file mode 100644
index 0000000..6d4bfa6
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-branch_ru.html
@@ -0,0 +1,11 @@
+
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-branch_tr.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-branch_tr.html
new file mode 100644
index 0000000..92a6f9e
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-branch_tr.html
@@ -0,0 +1,10 @@
+
+ Bu seçenek, Hudson'ın belli bir branch üzerinde yapılandırma yürütebilmesi için CVS'i
+ -r opsiyonu ile çalıştırmasını sağlar. Eğer boş bırakılırsa, Hudson trunk'ı yapılandırır.
+
+
+ Normalde, Hudson cvs check-out ve update işlemlerini -D date opsiyonu ile çalıştırır.
+ Bunun sebebi ise repository'nin uygun bir görüntüsünün alındığına emin olunup, yapılandırmayı tekrarlanabilir
+ hale getirebilmeyi kolaylaştırmaktır. Fakat, belirtilen branch adı, aynı zamanda bir tag adı ise bu işleri
+ karıştırabilir. Bu da, Hudson'a verilen ismin bir tag ismi olduğu belirtilerek çözülebilir.
+
\ No newline at end of file
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-canUseUpdate.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-canUseUpdate.html
new file mode 100644
index 0000000..9a3bfbb
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-canUseUpdate.html
@@ -0,0 +1,6 @@
+
+ If checked, Hudson will use 'cvs update' whenever possible for builds.
+ This makes a build faster. But this also causes the artifacts from
+ the previous build to remain in the file system when a new build starts,
+ making it not a true clean build.
+
\ No newline at end of file
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-canUseUpdate_de.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-canUseUpdate_de.html
new file mode 100644
index 0000000..cf6fe71
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-canUseUpdate_de.html
@@ -0,0 +1,6 @@
+
+ Ist diese Option angewählt, so verwendet Hudson wann immer möglich 'cvs update'
+ während eines Builds. Dies bewirkt außerdem, dass Artefakte von vorhergehenden
+ Builds im Dateisystem verbleiben und nachfolgende Builds daher nicht vollständig
+ von Grund auf neu gebaut werden.
+
\ No newline at end of file
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-canUseUpdate_fr.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-canUseUpdate_fr.html
new file mode 100644
index 0000000..99e8566
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-canUseUpdate_fr.html
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-canUseUpdate_ja.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-canUseUpdate_ja.html
new file mode 100644
index 0000000..0b5bf66
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-canUseUpdate_ja.html
@@ -0,0 +1,5 @@
+
\ No newline at end of file
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-canUseUpdate_nl.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-canUseUpdate_nl.html
new file mode 100644
index 0000000..325f89c
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-canUseUpdate_nl.html
@@ -0,0 +1,4 @@
+
+ Indien aangevinkt, zal Hudson, waar mogelijk, 'cvs update' gebruiken voor uw bouwpoging.
+Dit maakt een bouwpoging sneller. Dit zorgt er echter ook voor dat artefacten van een vorige bouwpoging niet opgeschoond worden. Op zich is uw bouwpoging dan ook geen echt propere bouwpoging meer.
+
\ No newline at end of file
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-canUseUpdate_pt_BR.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-canUseUpdate_pt_BR.html
new file mode 100644
index 0000000..4e7affe
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-canUseUpdate_pt_BR.html
@@ -0,0 +1,6 @@
+
+ Se marcado, Hudson usará 'cvs update' sempre que possível para as construções.
+ Isto torna uma construção mais rápida. Mas isto também faz com que os artefatos
+ da construção anterior permaneçam no sistema de arquivos quando a nova construção iniciar,
+ tornando-a uma construção não limpa de verdade.
+
\ No newline at end of file
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-canUseUpdate_ru.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-canUseUpdate_ru.html
new file mode 100644
index 0000000..8c2b9c7
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-canUseUpdate_ru.html
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-canUseUpdate_tr.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-canUseUpdate_tr.html
new file mode 100644
index 0000000..9b9d009
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-canUseUpdate_tr.html
@@ -0,0 +1,5 @@
+
+ Seçilirse, Hudson yapılandırmalar için, mümkün oldukça 'cvs update' komutunu kullanacaktır.
+ Yapılandırmaları hızlandırmasına rağmen, önceki başlatıldığında, önceki yapılandırmadan
+ kalan artefaktlar saklandığı için, tam anlamıyla temiz bir yapılandırma olmasını engeller.
+
\ No newline at end of file
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsExe.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsExe.html
new file mode 100644
index 0000000..3ca60ee
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsExe.html
@@ -0,0 +1,5 @@
+
+ Normally you should just leave this field empty and let Hudson pick up the right cvs.
+ If your cvs binary exists outside your PATH, however, specify the absolute
+ path to the cvs executable. If you just specify "cvs", it will find cvs from PATH.
+
\ No newline at end of file
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsExe_de.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsExe_de.html
new file mode 100644
index 0000000..c123b14
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsExe_de.html
@@ -0,0 +1,7 @@
+
+ Im Regelfall sollten Sie dieses Feld leerlassen und Hudson die richtige CVS-Installation
+ wählen lassen. Falls Ihre cvs Kommandozeilenanwendung nicht über die PATH
+ Umgebungsvariable gefunden werden kann, geben Sie den absoluten Pfad zur cvs
+ Kommandozeilenanwendung an. Wenn Sie nur "cvs" angeben, wird Hudson cvs über die PATH
+ Variable finden.
+
\ No newline at end of file
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsExe_fr.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsExe_fr.html
new file mode 100644
index 0000000..0ba8a93
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsExe_fr.html
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsExe_nl.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsExe_nl.html
new file mode 100644
index 0000000..cf8f535
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsExe_nl.html
@@ -0,0 +1,5 @@
+
+Normaal dient u dit veld leeg te laten. Hudson pikt dan zelf het juiste cvs programma op.
+Indien het cvs programma dat u wenst te gebruiken echter buiten het PATH ligt, dan kunt u hier het absolute pad naar uw cvs programma invullen.
+Indien u echter enkel 'cvs' invult, dan zal dit als programma gezocht worden in uw PATH.
+
\ No newline at end of file
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsExe_pt_BR.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsExe_pt_BR.html
new file mode 100644
index 0000000..acf1e6f
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsExe_pt_BR.html
@@ -0,0 +1,5 @@
+
+ Normalmente você deveria apenas deixar este campo vazio e deixar que o Hudson escolha o cvs correto.
+ Se seu binário cvs está fora de seu PATH, entretanto, especifique o caminho
+ absoluto para o executável cvs. Se você apenas especificar "cvs", ele encontrará o cvs no PATH.
+
\ No newline at end of file
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsExe_ru.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsExe_ru.html
new file mode 100644
index 0000000..97f8377
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsExe_ru.html
@@ -0,0 +1,5 @@
+
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsExe_tr.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsExe_tr.html
new file mode 100644
index 0000000..2e0a2db
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsExe_tr.html
@@ -0,0 +1,5 @@
+
+ Hudson'ın doğru cvs'i seçmesi için bu alanı boş bırakmalısınız.
+ Eğer cvs, PATH dışında ise, cvs çalıştırılabilir dosyasının mutlak
+ yolunu burada belirlemeniz gerekir. Sadece, "cvs" yazarsanız, bunu PATH içerisinde bulacaktır.
+
\ No newline at end of file
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsRoot.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsRoot.html
new file mode 100644
index 0000000..1da6a2e
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsRoot.html
@@ -0,0 +1,4 @@
+
+ The CVS connection string Hudson uses to connect to the server. The format is
+ the same as $CVSROOT environment variable (:protocol:user@host:path)
+
\ No newline at end of file
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsRoot_de.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsRoot_de.html
new file mode 100644
index 0000000..5a03bd4
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsRoot_de.html
@@ -0,0 +1,5 @@
+
+ Geben Sie hier den CVS-Verbindungsparameter an, mit dem sich Hudson mit dem CVS-Server
+ verbindet. Das Format ist identisch mit dem der Umgebungsvariable $CVSROOT
+ (:protocol:user@host:path).
+
\ No newline at end of file
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsRoot_fr.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsRoot_fr.html
new file mode 100644
index 0000000..23e0803
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsRoot_fr.html
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsRoot_ja.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsRoot_ja.html
new file mode 100644
index 0000000..f8a55b6
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsRoot_ja.html
@@ -0,0 +1,4 @@
+
\ No newline at end of file
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsRoot_nl.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsRoot_nl.html
new file mode 100644
index 0000000..f394a5f
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsRoot_nl.html
@@ -0,0 +1,3 @@
+
+ De cvs connectie die Hudson zal gebruiken om zich te verbinden met de cvs server. Het te volgen formaat is hetzelfde als voor de $CVSROOT omgevingsparameter, met name (:protocol:user@host:path).
+
\ No newline at end of file
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsRoot_pt_BR.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsRoot_pt_BR.html
new file mode 100644
index 0000000..2aaad9a
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsRoot_pt_BR.html
@@ -0,0 +1,4 @@
+
+ A string de conexão do CVS que Hudson usa para conectar-se ao servidor. O formato é
+ o mesmo da variável de ambiente $CVSROOT (:protocol:user@host:path)
+
\ No newline at end of file
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsRoot_ru.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsRoot_ru.html
new file mode 100644
index 0000000..6126c8d
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsRoot_ru.html
@@ -0,0 +1,4 @@
+
\ No newline at end of file
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsRoot_tr.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsRoot_tr.html
new file mode 100644
index 0000000..a9d9438
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsRoot_tr.html
@@ -0,0 +1,4 @@
+
\ No newline at end of file
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsRsh.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsRsh.html
new file mode 100644
index 0000000..3ec5a32
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsRsh.html
@@ -0,0 +1,5 @@
+
+ If set, Hudson will run CVS with the CVS_RSH environment variable set
+ to this value. If this value is not set, and the web container that Hudson runs in
+ has CVS_RSH set in its environment variable, then CVS will inherit it.
+
\ No newline at end of file
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsRsh_de.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsRsh_de.html
new file mode 100644
index 0000000..89a0261
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsRsh_de.html
@@ -0,0 +1,5 @@
+
+ Wenn gesetzt, startet Hudson CVS mit der
+ Umgebungsvariable CVS_RSH - gesetzt auf den angegebenen Wert.
+ Ist das Feld leer, so erbt CVS den Wert von CVS_RSH aus der Umgebung des Web-Containers, in dem Hudson läuft, falls vorhanden.
+
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsRsh_fr.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsRsh_fr.html
new file mode 100644
index 0000000..d8cfd16
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsRsh_fr.html
@@ -0,0 +1,8 @@
+
\ No newline at end of file
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsRsh_nl.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsRsh_nl.html
new file mode 100644
index 0000000..1ca9a3b
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsRsh_nl.html
@@ -0,0 +1,3 @@
+
+Indien geconfigureerd, zal Hudson CVS starten met de CVS_RSH omgevingsparameter ingesteld op die waarde. Indien deze waarde niet ingesteld is, zal de waarde overge�rfd worden van de webcontainer waarbinnen Hudson draait. Vooropgesteld dat deze omgevingsparameter voor deze container geconfigureerd werd.
+
\ No newline at end of file
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsRsh_pt_BR.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsRsh_pt_BR.html
new file mode 100644
index 0000000..c35f634
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsRsh_pt_BR.html
@@ -0,0 +1,5 @@
+
+ Se informado, Hudson executará o CVS com a variável de ambiente CVS_RSH contendo
+ este valor. Se este valor não for informado, e o contêiner web onde o Hudson é executado
+ tem CVS_RSH atribuído em sua variável de ambiente, então o CVS a herdará.
+
\ No newline at end of file
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsRsh_ru.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsRsh_ru.html
new file mode 100644
index 0000000..33f9648
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsRsh_ru.html
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsRsh_tr.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsRsh_tr.html
new file mode 100644
index 0000000..b38f4ee
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvsRsh_tr.html
@@ -0,0 +1,5 @@
+
+ Eğer seçilirse, Hudson CVS'i, CVS_RSH ortam değişkenini
+ bu değere eşitleyerek çalıştıracaktır. Eğer seçilmezse ve Hudson'ın içerisinde çalıştığı web container
+ CVS_RSH ortam değişkenine sahipse, CVS bunu kullanacaktır.
+
\ No newline at end of file
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvspassFile.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvspassFile.html
new file mode 100644
index 0000000..2de20b6
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvspassFile.html
@@ -0,0 +1,27 @@
+
+
+
+
+
+ CVS stores the login and password information in a file called ".cvspass". Normally
+ CVS loads this file in your home directory, but if you want to have Hudson load it
+ from a different place, specify the full path to the file. Otherwise leave it blank.
+
+
+ If you are using CVSNT (am I?), then this setting is
+ likely to be ignored. See
+ this note for more about why. In this case, you need to run "cvs login" command
+ manually to enter password. If Hudson runs under the same user as you do, then
+ this would be straight-forward. However, if Hudson runs as a service, you'd need to
+ first launch CMD.exe as the SYSTEM user, then you need to run cvs command
+ from there. See this document
+ for how to do this.
+
+
+
+
+
\ No newline at end of file
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvspassFile_de.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvspassFile_de.html
new file mode 100644
index 0000000..e2998c2
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvspassFile_de.html
@@ -0,0 +1,30 @@
+
+
+
+
+
+ CVS speichert Benutzernamen und Kennwörter in einer Datei namens ".cvspass".
+ Normalerweise lädt CVS diese Datei aus Ihrem Home-Verzeichnis. Wenn CVS
+ diese Datei aus einem anderen Verzeichnis laden soll, geben Sie hier
+ den vollständigen Pfadnamen der Datei an, ansonsten lassen Sie
+ dieses Feld leer.
+
+
+ Wenn Sie CVSNT verwenden (tue ich das?), dann
+ wird diese Einstellung wahrscheinlich ignoriert. Mehr Informationen dazu
+ finden Sie in
+ dieser Notiz. Geben Sie in diesem Fall mit dem Kommando "cvs login" manuell
+ Ihr Kennwort ein. Wenn Hudson unter Ihrem eigenen Benutzerkonto läuft, sollte
+ das kein Problem sein. Falls Hudson jedoch als Dienst läuft, müssen Sie zunächst
+ CMD.EXE als SYSTEM-Benutzer aufrufen und von dort cvs ausführen. Mehr dazu
+ steht in diesem
+ Dokument.
+
+
+
+
+
\ No newline at end of file
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvspassFile_fr.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvspassFile_fr.html
new file mode 100644
index 0000000..2de20b6
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvspassFile_fr.html
@@ -0,0 +1,27 @@
+
+
+
+
+
+ CVS stores the login and password information in a file called ".cvspass". Normally
+ CVS loads this file in your home directory, but if you want to have Hudson load it
+ from a different place, specify the full path to the file. Otherwise leave it blank.
+
+
+ If you are using CVSNT (am I?), then this setting is
+ likely to be ignored. See
+ this note for more about why. In this case, you need to run "cvs login" command
+ manually to enter password. If Hudson runs under the same user as you do, then
+ this would be straight-forward. However, if Hudson runs as a service, you'd need to
+ first launch CMD.exe as the SYSTEM user, then you need to run cvs command
+ from there. See this document
+ for how to do this.
+
+
+
+
+
\ No newline at end of file
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvspassFile_ja.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvspassFile_ja.html
new file mode 100644
index 0000000..fac9092
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-cvspassFile_ja.html
@@ -0,0 +1,26 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-excludedRegions.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-excludedRegions.html
new file mode 100644
index 0000000..2ae7890
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-excludedRegions.html
@@ -0,0 +1,12 @@
+
+ If set, and Hudson is set to poll for changes, Hudson will ignore any files and/or folders in this list when determining if a build needs to be triggered.
+ Each exclusion uses regular expression pattern matching, and must be separated by a new line.
+
+
+ The example above illustrates that if only html/jpeg/gif files have been committed to the SCM a build will not occur.
+ More information on regular expressions can be found here.
+
\ No newline at end of file
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-excludedRegions_de.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-excludedRegions_de.html
new file mode 100644
index 0000000..dc428b9
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-excludedRegions_de.html
@@ -0,0 +1,14 @@
+
+ Ist diese Option angewählt und das Projekt so konfiguriert, dass Hudson regelmäßig
+ ein CVS-Repository nach Änderungen befragt, so werden dabei die hier angegebenen Dateien
+ und/oder Verzeichnisse bei der Bestimmung, ob ein neuer Build ausgelöst werden soll,
+ ignoriert.
+ Jeder Ausschluss kann reguläre Ausdrücke verwenden und muss ein einer eigenen Zeile stehen.
+ Im folgenden Beispiel wird kein neuer Build ausgelöst, wenn nur html/jpeg/gif-Dateien geändert wurden.
+
\ No newline at end of file
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-excludedRegions_fr.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-excludedRegions_fr.html
new file mode 100644
index 0000000..6c7877a
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-excludedRegions_fr.html
@@ -0,0 +1,12 @@
+
\ No newline at end of file
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-excludedRegions_ja.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-excludedRegions_ja.html
new file mode 100644
index 0000000..62e742d
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-excludedRegions_ja.html
@@ -0,0 +1,12 @@
+
\ No newline at end of file
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-legacy.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-legacy.html
new file mode 100644
index 0000000..5a06e1f
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-legacy.html
@@ -0,0 +1,13 @@
+
+ Hudson 1.20 and earlier used to create redundant directories inside the workspace.
+ For example, if the CVS module name is "foo/bar", it first created "foo/bar" and
+ then put everything below. With this option checked off, there will be no more
+ such unnecessary intermediate directories.
+
+
+ If you have multiple modules to check out, this option is forced (otherwise they'll overlap.)
+
+
+ This affects other path specifiers, such as artifact archivers --- you now specify
+ "build/foo.jar" instead of "foo/build/foo.jar".
+
\ No newline at end of file
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-legacy_de.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-legacy_de.html
new file mode 100644
index 0000000..6733669
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-legacy_de.html
@@ -0,0 +1,10 @@
+
+ Hudson 1.20 und früher legten redundante Verzeichnisse innerhalb des Arbeitsbereiches
+ an. War der CVS-Modulname beispielsweise "foo/bar", so legte Hudson erst ein
+ Verzeichnis "foo/bar" an und legte dann alles unterhalb dieses Verzeichnisses ab.
+ Ist diese Option nicht angewählt, werden keine solchen unnötigen Zwischenverzeichnisse
+ mehr erzeugt.
+
+ Dies wirkt sich auf weitere Pfadangaben aus, etwa zur Archivierung von Artefakten:
+ Sie geben dann "build/foo.jar" statt "foo/build/foo.jar" an.
+
\ No newline at end of file
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-legacy_fr.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-legacy_fr.html
new file mode 100644
index 0000000..3a2d87d
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-legacy_fr.html
@@ -0,0 +1,12 @@
+
\ No newline at end of file
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-legacy_ja.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-legacy_ja.html
new file mode 100644
index 0000000..0059396
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-legacy_ja.html
@@ -0,0 +1,10 @@
+
\ No newline at end of file
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-legacy_nl.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-legacy_nl.html
new file mode 100644
index 0000000..337c75d
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-legacy_nl.html
@@ -0,0 +1,9 @@
+
+Hudson 1.20 en vroeger gebruikten redundante folders in de werkplaats.
+Vb. indien de 'cvs' modulenaam "foo/bar" is, dan werd eerst "foo/bar" gecre�erd. Om vervolgens alles onder die folder te plaatsen.
+Indien u deze optie afvinkt, dan worden deze onnodige tussenliggende folders niet meer aangemaakt.
+
+
+Merk wel op dat dit invloed heeft op andere plaatsen in uw configuratie, waar u paden opgegeven hebt. U dient bvb. "build/foo.jar" op te geven i.p.v. "foo/build/foo.jar".
+
+
\ No newline at end of file
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-legacy_pt_BR.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-legacy_pt_BR.html
new file mode 100644
index 0000000..fb6fdd9
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-legacy_pt_BR.html
@@ -0,0 +1,10 @@
+
+ Hudson 1.20 e anteriores usavam para criar diretórios redundantes dentro do workspace.
+ Por exemplo, se o nome do módulo CVS fosse "foo/bar", ele primeiro criava "foo/bar" e
+ depois colocava tudo abaixo desta estrutura. Com este opção desmarcada, não haverá mais
+ diretórios intermediários desnecessários.
+
+
+ Isto afeta outros especificadores de caminho, tal como arquivadores de artefatos --- você agora especifica
+ "build/foo.jar" ao invés de "foo/build/foo.jar".
+
\ No newline at end of file
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-legacy_ru.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-legacy_ru.html
new file mode 100644
index 0000000..f0a4f47
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-legacy_ru.html
@@ -0,0 +1,9 @@
+
\ No newline at end of file
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-legacy_tr.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-legacy_tr.html
new file mode 100644
index 0000000..be5fd32
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/CVSSCM/help-legacy_tr.html
@@ -0,0 +1,9 @@
+
+ Hudson 1.20 ve önceki versiyonları, çalışma alanı içerisinde gereksiz dizinler oluşturuyorlardı.
+ Mesela, CVS modülünün adı "foo/bar" ise, önce "foo/bar" dizini oluşturulup, sonra da herşey
+ bunun altına konuluyordu. Bu seçenek bunu önlemek için tasarlanmıştır.
+
+
+ Aynı zamanda, artefakt arşivleyici gibi dizin belirleyen kısımları da etkiler.
+ Artık, "foo/build/foo.jar" yerine "build/foo.jar" belirtebilirsiniz.
+
\ No newline at end of file
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/MailAddressResolverImpl.class b/work/plugins/cvs/WEB-INF/classes/hudson/scm/MailAddressResolverImpl.class
new file mode 100644
index 0000000..b221f70
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/MailAddressResolverImpl.class
Binary files differ
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/FishEyeCVS$DescriptorImpl$1.class b/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/FishEyeCVS$DescriptorImpl$1.class
new file mode 100644
index 0000000..9dcbe16
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/FishEyeCVS$DescriptorImpl$1.class
Binary files differ
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/FishEyeCVS$DescriptorImpl.class b/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/FishEyeCVS$DescriptorImpl.class
new file mode 100644
index 0000000..67c57f5
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/FishEyeCVS$DescriptorImpl.class
Binary files differ
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/FishEyeCVS.class b/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/FishEyeCVS.class
new file mode 100644
index 0000000..e14e183
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/FishEyeCVS.class
Binary files differ
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/FishEyeCVS.stapler b/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/FishEyeCVS.stapler
new file mode 100644
index 0000000..9ae718b
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/FishEyeCVS.stapler
@@ -0,0 +1,2 @@
+#Tue Jul 20 16:33:31 PDT 2010
+constructor=url
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/FishEyeCVS/DescriptorImpl/doCheckUrl.stapler b/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/FishEyeCVS/DescriptorImpl/doCheckUrl.stapler
new file mode 100644
index 0000000..2890eea
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/FishEyeCVS/DescriptorImpl/doCheckUrl.stapler
@@ -0,0 +1 @@
+value
\ No newline at end of file
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/FishEyeCVS/config.jelly b/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/FishEyeCVS/config.jelly
new file mode 100644
index 0000000..e73f80a
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/FishEyeCVS/config.jelly
@@ -0,0 +1,29 @@
+
+
+
+
+
+
+
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/FishEyeCVS/help-url.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/FishEyeCVS/help-url.html
new file mode 100644
index 0000000..20bcaee
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/FishEyeCVS/help-url.html
@@ -0,0 +1,4 @@
+
+ Specify the root URL of FishEye for this repository
+ (such as this.)
+
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/FishEyeCVS/help-url_de.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/FishEyeCVS/help-url_de.html
new file mode 100644
index 0000000..e70f936
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/FishEyeCVS/help-url_de.html
@@ -0,0 +1,4 @@
+
+ Geben Sie die FishEye-URL zum Stammverzeichnis des Projektes an, z.B.
+ http://deadlock.netbeans.org/fisheye/browse/netbeans/.
+
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/FishEyeCVS/help-url_fr.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/FishEyeCVS/help-url_fr.html
new file mode 100644
index 0000000..78b90c8
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/FishEyeCVS/help-url_fr.html
@@ -0,0 +1,4 @@
+
+ Indiquez ici l'URL racine de FishEye pour ce repository
+ (comme ceci.)
+
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/FishEyeCVS/help-url_ja.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/FishEyeCVS/help-url_ja.html
new file mode 100644
index 0000000..59dc2c1
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/FishEyeCVS/help-url_ja.html
@@ -0,0 +1,4 @@
+
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/FishEyeCVS/help-url_tr.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/FishEyeCVS/help-url_tr.html
new file mode 100644
index 0000000..b2df5c2
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/FishEyeCVS/help-url_tr.html
@@ -0,0 +1,4 @@
+
+ Bu repository için bir FishEye URL başlangıcı belirleyin.
+ (Mesela, bunun gibi.)
+
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/ViewCVS$DescriptorImpl.class b/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/ViewCVS$DescriptorImpl.class
new file mode 100644
index 0000000..67df124
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/ViewCVS$DescriptorImpl.class
Binary files differ
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/ViewCVS.class b/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/ViewCVS.class
new file mode 100644
index 0000000..afc3498
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/ViewCVS.class
Binary files differ
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/ViewCVS.stapler b/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/ViewCVS.stapler
new file mode 100644
index 0000000..9ae718b
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/ViewCVS.stapler
@@ -0,0 +1,2 @@
+#Tue Jul 20 16:33:31 PDT 2010
+constructor=url
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/ViewCVS/config.jelly b/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/ViewCVS/config.jelly
new file mode 100644
index 0000000..df23648
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/ViewCVS/config.jelly
@@ -0,0 +1,29 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/ViewCVS/help-url.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/ViewCVS/help-url.html
new file mode 100644
index 0000000..83f3f0e
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/ViewCVS/help-url.html
@@ -0,0 +1,4 @@
+
+ Specify the root URL of ViewCVS for this repository
+ (such as this).
+
\ No newline at end of file
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/ViewCVS/help-url_de.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/ViewCVS/help-url_de.html
new file mode 100644
index 0000000..95a0f64
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/ViewCVS/help-url_de.html
@@ -0,0 +1,4 @@
+
+ Geben Sie die ViewCVS-Stamm-URL für dieses Repository an, z.B.
+ http://relaxngcc.cvs.sourceforge.net/relaxngcc/.
+
\ No newline at end of file
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/ViewCVS/help-url_fr.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/ViewCVS/help-url_fr.html
new file mode 100644
index 0000000..9ec0fef
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/ViewCVS/help-url_fr.html
@@ -0,0 +1,4 @@
+
\ No newline at end of file
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/ViewCVS/help-url_ja.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/ViewCVS/help-url_ja.html
new file mode 100644
index 0000000..4450db3
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/ViewCVS/help-url_ja.html
@@ -0,0 +1,4 @@
+
\ No newline at end of file
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/ViewCVS/help-url_pt_BR.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/ViewCVS/help-url_pt_BR.html
new file mode 100644
index 0000000..0f3a138
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/ViewCVS/help-url_pt_BR.html
@@ -0,0 +1,4 @@
+
+ Especifique a URL raíz do ViewCVS para este repositório
+ (tal como esta).
+
\ No newline at end of file
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/ViewCVS/help-url_ru.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/ViewCVS/help-url_ru.html
new file mode 100644
index 0000000..0f8dafa
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/ViewCVS/help-url_ru.html
@@ -0,0 +1,4 @@
+
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/ViewCVS/help-url_tr.html b/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/ViewCVS/help-url_tr.html
new file mode 100644
index 0000000..e988daa
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/browsers/ViewCVS/help-url_tr.html
@@ -0,0 +1,4 @@
+
+ Bu repository'nin ViewCVS ile görüntülenebilmesi için bir başlangıç URL'i girin.
+ (mesela linki gibi).
+
\ No newline at end of file
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/cvs/Messages.class b/work/plugins/cvs/WEB-INF/classes/hudson/scm/cvs/Messages.class
new file mode 100644
index 0000000..de4f163
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/cvs/Messages.class
Binary files differ
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/cvs/Messages.properties b/work/plugins/cvs/WEB-INF/classes/hudson/scm/cvs/Messages.properties
new file mode 100644
index 0000000..f3f2b53
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/cvs/Messages.properties
@@ -0,0 +1,44 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Seiji Sogabe
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+# This message resource is in a non-standard location to avoid conflict with hudson.scm.Messages.
+# This is due to the fact that historically the CVS support was a part of the core.
+
+CVSSCM.TagginXasY=Tagging {0} as {1}
+CVSSCM.FailedToMarkForKeep=Failed to mark {0} for keep
+CVSSCM.ExpandingWorkspaceArchive=expanding the workspace archive into {0}
+CVSSCM.HeadIsNotBranch=Technically, HEAD is not a branch in CVS. Leave this field empty to build the trunk.
+CVSSCM.InvalidCvsroot=Invalid CVSROOT string
+CVSSCM.MissingCvsroot=CVSROOT is mandatory
+CVSSCM.NoSuchJobExists=No such job exists: {0}
+CVSSCM.NoUpstreamBuildFound=Upstream build not found for: {0}
+CVSSCM.NoValidTagNameGivenFor=No valid tag name given for {0} : {1}
+CVSSCM.PasswordNotSet=It doesn''t look like this CVSROOT has its password set.
+CVSSCM.TagContainsIllegalChar=Tag contains illegal ''{0}'' character
+CVSSCM.TagIsEmpty=Tag is empty
+CVSSCM.TagNeedsToStartWithAlphabet=Tag needs to start with alphabet
+CVSSCM.TagThisBuild=Tag this build
+CVSSCM.TaggingFailed=tagging failed
+CVSSCM.TaggingWorkspace=tagging the workspace
+CVSSCM.DisplayName2=CVS tags
+CVSSCM.DisplayName1=CVS tag
+CVSSCM.WorkspaceInconsistent=Workspace is inconsistent with configuration. Scheduling a new build: {0}
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/cvs/Messages_de.properties b/work/plugins/cvs/WEB-INF/classes/hudson/scm/cvs/Messages_de.properties
new file mode 100644
index 0000000..1b78962
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/cvs/Messages_de.properties
@@ -0,0 +1,41 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Simon Wiest
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+CVSSCM.TagginXasY=Markiere ("tagge") {0} als {1}
+CVSSCM.FailedToMarkForKeep={0} konnte nicht markiert werden, um beibehalten zu werden ("failed to mark for keep").
+CVSSCM.ExpandingWorkspaceArchive=Entpacke das Archiv des Arbeitsbereichs nach {0}
+CVSSCM.HeadIsNotBranch=Technisch gesprochen ist HEAD kein Zweig in CVS. Lassen Sie dieses Feld frei, um den Trunk zu bauen.
+CVSSCM.InvalidCvsroot=Ung\u00FCltige CVSROOT-Angabe.
+CVSSCM.MissingCvsroot=CVSROOT muss angegeben werden.
+CVSSCM.NoSuchJobExists=Dieser Job existiert nicht: {0}
+CVSSCM.NoValidTagNameGivenFor=Der Tag-Name {1} ist ung\u00FCltig f\u00FCr {0}.
+CVSSCM.PasswordNotSet=Das Passwort f\u00FCr CVSROOT scheint nicht gesetzt zu sein.
+CVSSCM.TagContainsIllegalChar=Der Tag-Name enth\u00E4lt ung\u00FCltiges Zeichen ''{0}''.
+CVSSCM.TagIsEmpty=Der Tag-Name ist leer.
+CVSSCM.TagNeedsToStartWithAlphabet=Der Tag-Name muss mit einem Buchstaben beginnen.
+CVSSCM.TagThisBuild=Diesen Build markieren ("taggen").
+CVSSCM.TaggingFailed=Markierung ("tagging") ist fehlgeschlagen.
+CVSSCM.TaggingWorkspace=Arbeitsbereich wird markiert ("getaggt").
+CVSSCM.DisplayName2=CVS-Tags
+CVSSCM.DisplayName1=CVS-Tag
+CVSSCM.WorkspaceInconsistent=Der Arbeitsbereich ist inkonsistent mit der aktuellen Konfiguration. Plane einen neuen Build: {0}
+
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/cvs/Messages_es.properties b/work/plugins/cvs/WEB-INF/classes/hudson/scm/cvs/Messages_es.properties
new file mode 100644
index 0000000..367860c
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/cvs/Messages_es.properties
@@ -0,0 +1,58 @@
+# The MIT License
+#
+# Copyright (c) 2004-2010, Sun Microsystems, Inc.
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+# CVS tags
+CVSSCM.DisplayName2=Etiquetas CVS
+# Failed to mark {0} for keep
+CVSSCM.FailedToMarkForKeep=Fallo al marcar {0} para conservarlo
+# Tag is empty
+CVSSCM.TagIsEmpty=La etiqueta está vacía
+# Tag contains illegal ''{0}'' character
+CVSSCM.TagContainsIllegalChar=La etiqueta contiene un carácter inválido ''{0}''
+# Technically, HEAD is not a branch in CVS. Leave this field empty to build the trunk.
+CVSSCM.HeadIsNotBranch=Técnicamente "HEAD" no es una rama de CVS. Deja este campo vacío para utilizar el "trunk"
+# expanding the workspace archive into {0}
+CVSSCM.ExpandingWorkspaceArchive=Descomprimiento el archivo con el espacio de trabajo en {0}
+# No valid tag name given for {0} : {1}
+CVSSCM.NoValidTagNameGivenFor=No se ha especificado una etiqueta válida para {0}: {1}
+# tagging the workspace
+CVSSCM.TaggingWorkspace=Etiquetando el espacio de trabajo
+# Tagging {0} as {1}
+CVSSCM.TagginXasY=Etiquetando {0} como {1}
+# Invalid CVSROOT string
+CVSSCM.InvalidCvsroot=CVSROOT no es válido
+# Tag this build
+CVSSCM.TagThisBuild=Etiquetar esta ejecución
+# CVSROOT is mandatory
+CVSSCM.MissingCvsroot=CVSROOT es obligatorio
+# tagging failed
+CVSSCM.TaggingFailed=Fallo al etiquetar
+# Workspace is inconsistent with configuration. Scheduling a new build: {0}
+CVSSCM.WorkspaceInconsistent=El espacio de trabajo es inconsistente con la configuración, lanzando una nueva ejecución: {0}
+# Tag needs to start with alphabet
+CVSSCM.TagNeedsToStartWithAlphabet=Una etiqueta tiene que comenzar con una letra
+# CVS tag
+CVSSCM.DisplayName1=Etiqueta CVS
+# No such job exists: {0}
+CVSSCM.NoSuchJobExists=La tarea no existe: {0}
+# It doesn''t look like this CVSROOT has its password set.
+CVSSCM.PasswordNotSet=Parece que no se ha especificado una contraseña para este CVSROOT
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/cvs/Messages_fr.properties b/work/plugins/cvs/WEB-INF/classes/hudson/scm/cvs/Messages_fr.properties
new file mode 100644
index 0000000..2fa8135
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/cvs/Messages_fr.properties
@@ -0,0 +1,39 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Eric Lefevre-Ardant
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+CVSSCM.TagginXasY=Application du tag {1} sur {0}
+CVSSCM.FailedToMarkForKeep=Echec lors du marquage de {0} en vue de le conserver
+CVSSCM.ExpandingWorkspaceArchive=d\u00C3\u00A9compressage de l''archive de r\u00C3\u00A9pertoire de travail dans {0}
+CVSSCM.HeadIsNotBranch=Techniquement, HEAD n''est pas une branche dans CVS. Laissez ce champ vide pour builder le tronc.
+CVSSCM.InvalidCvsroot=String CVSROOT invalide
+CVSSCM.MissingCvsroot=CVSROOT est obligatoire
+CVSSCM.NoValidTagNameGivenFor=Nom de tag non valide pour {0} : {1}
+CVSSCM.PasswordNotSet=Ce CVSROOT ne semble pas avoir de mot de passe sp\u00C3\u00A9cifi\u00C3\u00A9.
+CVSSCM.TagContainsIllegalChar=Ce tag contient des caract\u00C3\u00A8res ill\u00C3\u00A9gaux ''{0}''
+CVSSCM.TagIsEmpty=Ce tag est vide
+CVSSCM.TagNeedsToStartWithAlphabet=Le libell\u00C3\u00A9 du tag doit commencer avec un caract\u00C3\u00A8re alphab\u00C3\u00A9tique
+CVSSCM.TagThisBuild=Tagguer ce build
+CVSSCM.TaggingFailed=\u00C3\u00A9chec de l''application du tag
+CVSSCM.TaggingWorkspace=application du tag sur le workspace
+CVSSCM.DisplayName2=Tags CVS
+CVSSCM.DisplayName1=Tag CVS
+CVSSCM.WorkspaceInconsistent=Le r\u00C3\u00A9pertoire de travail n''est pas coh\u00C3\u00A9rent avec la configuration. Un nouveau build est demand\u00C3\u00A9: {0}
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/cvs/Messages_ja.properties b/work/plugins/cvs/WEB-INF/classes/hudson/scm/cvs/Messages_ja.properties
new file mode 100644
index 0000000..2cbd8d2
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/cvs/Messages_ja.properties
@@ -0,0 +1,40 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Seiji Sogabe
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+CVSSCM.TagginXasY={0}\u3092{1}\u3068\u3057\u3066\u30BF\u30B0\u3092\u8A2D\u5B9A
+CVSSCM.FailedToMarkForKeep={0}\u306E\u8A18\u9332\u306B\u5931\u6557\u3057\u307E\u3057\u305F
+CVSSCM.ExpandingWorkspaceArchive=\u30EF\u30FC\u30AF\u30B9\u30DA\u30FC\u30B9\u30A2\u30FC\u30AB\u30A4\u30D6\u3092{0}\u306B\u5C55\u958B\u4E2D
+CVSSCM.HeadIsNotBranch=\u53B3\u5BC6\u306B\u8A00\u3046\u3068\u3001HEAD\u306FCVS\u306E\u30D6\u30E9\u30F3\u30C1\u3067\u306F\u3042\u308A\u307E\u305B\u3093\u3002\u30C8\u30E9\u30F3\u30AF\u3092\u30D3\u30EB\u30C9\u3059\u308B\u305F\u3081\u306B\u3053\u306E\u9805\u76EE\u3092\u7A7A\u6B04\u306E\u307E\u307E\u306B\u3057\u3066\u304F\u3060\u3055\u3044\u3002
+CVSSCM.InvalidCvsroot=\u4E0D\u6B63\u306ACVSROOT\u3067\u3059
+CVSSCM.MissingCvsroot=CVSROOT\u306F\u5FC5\u9808\u3067\u3059
+CVSSCM.NoSuchJobExists=\u5B58\u5728\u3057\u306A\u3044\u30B8\u30E7\u30D6: {0}
+CVSSCM.NoValidTagNameGivenFor={0}\u306B\u5BFE\u3059\u308B\u59A5\u5F53\u306A\u30BF\u30B0\u540D\u3067\u306F\u3042\u308A\u307E\u305B\u3093: {1}
+CVSSCM.PasswordNotSet=\u3053\u306ECVSROOT\u306E\u30D1\u30B9\u30EF\u30FC\u30C9\u304C\u8A2D\u5B9A\u3055\u308C\u3066\u3044\u306A\u3044\u3088\u3046\u3067\u3059\u3002
+CVSSCM.TagContainsIllegalChar=\u30BF\u30B0\u306B\u4E0D\u6B63\u306A\u6587\u5B57 ''{0}''\u304C\u542B\u307E\u308C\u3066\u3044\u307E\u3059
+CVSSCM.TagIsEmpty=\u30BF\u30B0\u304C\u672A\u8A2D\u5B9A\u3067\u3059
+CVSSCM.TagNeedsToStartWithAlphabet=\u30BF\u30B0\u306F\u82F1\u5B57\u3067\u59CB\u307E\u308B\u5FC5\u8981\u304C\u3042\u308A\u307E\u3059
+CVSSCM.TagThisBuild=\u3053\u306E\u30D3\u30EB\u30C9\u306B\u30BF\u30B0\u3092\u8A2D\u5B9A
+CVSSCM.TaggingFailed=\u30BF\u30B0\u306E\u8A2D\u5B9A\u306B\u5931\u6557
+CVSSCM.TaggingWorkspace=\u30EF\u30FC\u30AF\u30B9\u30DA\u30FC\u30B9\u306B\u30BF\u30B0\u3092\u8A2D\u5B9A\u4E2D
+CVSSCM.DisplayName2=CVS\u30BF\u30B0
+CVSSCM.DisplayName1=CVS\u30BF\u30B0
+CVSSCM.WorkspaceInconsistent=\u30EF\u30FC\u30AF\u30B9\u30DA\u30FC\u30B9\u304C\u8A2D\u5B9A\u3068\u77DB\u76FE\u3057\u3066\u3044\u307E\u3059\u3002\u65B0\u898F\u30D3\u30EB\u30C9\u3092\u30B9\u30B1\u30B8\u30E5\u30FC\u30EA\u30F3\u30B0\u3057\u307E\u3059: {0}
diff --git a/work/plugins/cvs/WEB-INF/classes/hudson/scm/cvs/Messages_nl.properties b/work/plugins/cvs/WEB-INF/classes/hudson/scm/cvs/Messages_nl.properties
new file mode 100644
index 0000000..72b11bb
--- /dev/null
+++ b/work/plugins/cvs/WEB-INF/classes/hudson/scm/cvs/Messages_nl.properties
@@ -0,0 +1,39 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, id:sorokh
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+CVSSCM.TagginXasY=Label {0} als {1}
+CVSSCM.FailedToMarkForKeep={0} kon niet gemarkeerd worden om te behouden
+CVSSCM.ExpandingWorkspaceArchive=expanding the workspace archive into {0}
+CVSSCM.HeadIsNotBranch=Technisch is HEAD geen vertakking in CVS. Laat dit veld leeg indien u vanaf de basis wilt bouwen.
+CVSSCM.InvalidCvsroot=Ongeldige CVSROOT string
+CVSSCM.MissingCvsroot=CVSROOT is verplicht
+CVSSCM.NoValidTagNameGivenFor=Label naam is niet geldig voor {0} : {1}
+CVSSCM.PasswordNotSet=Deze CVSROOT heeft blijkbaar geen paswoord ingesteld.
+CVSSCM.TagContainsIllegalChar=Label bevat ongeldig teken ''{0}''
+CVSSCM.TagIsEmpty=Label is blanko
+CVSSCM.TagNeedsToStartWithAlphabet=Label moet starten met een letter
+CVSSCM.TagThisBuild=Label deze bouwpoging
+CVSSCM.TaggingFailed=labelen gefaald
+CVSSCM.TaggingWorkspace=tagging the workspace
+CVSSCM.DisplayName2=CVS labels
+CVSSCM.DisplayName1=CVS label
+CVSSCM.WorkspaceInconsistent=Werkplaats is inconsistent met de configuratie. Een nieuwe bouwpoging wordt gepland: {0}
diff --git a/work/plugins/maven-plugin.hpi b/work/plugins/maven-plugin.hpi
new file mode 100644
index 0000000..124bd2e
--- /dev/null
+++ b/work/plugins/maven-plugin.hpi
Binary files differ
diff --git a/work/plugins/maven-plugin.hpi.pinned b/work/plugins/maven-plugin.hpi.pinned
new file mode 100644
index 0000000..e5df6ce
--- /dev/null
+++ b/work/plugins/maven-plugin.hpi.pinned
@@ -0,0 +1 @@
+pinned
\ No newline at end of file
diff --git a/work/plugins/maven-plugin/.timestamp b/work/plugins/maven-plugin/.timestamp
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/work/plugins/maven-plugin/.timestamp
diff --git a/work/plugins/maven-plugin/META-INF/MANIFEST.MF b/work/plugins/maven-plugin/META-INF/MANIFEST.MF
new file mode 100644
index 0000000..77703fe
--- /dev/null
+++ b/work/plugins/maven-plugin/META-INF/MANIFEST.MF
@@ -0,0 +1,22 @@
+Manifest-Version: 1.0
+Archiver-Version: Plexus Archiver
+Created-By: Apache Maven
+Built-By: kohsuke
+Build-Jdk: 1.6.0_24
+Extension-Name: maven-plugin
+Specification-Title: This plug-in provides deep integration of Jenkins
+ and Maven. This functionality used to be part of the Jenkins core.
+ Now it is a plug-in that is installed by default, but can be disabled.
+Implementation-Title: maven-plugin
+Implementation-Version: 1.405
+Plugin-Class: hudson.maven.PluginImpl
+Group-Id: org.jenkins-ci.main
+Short-Name: maven-plugin
+Long-Name: Maven Integration plugin
+Url: http://wiki.jenkins-ci.org/display/JENKINS/Maven+2+Project+Plugin
+Plugin-Version: 1.405
+Hudson-Version: 1.405
+Jenkins-Version: 1.405
+Plugin-Dependencies: token-macro:1.1;resolution:=optional
+Plugin-Developers:
+
diff --git a/work/plugins/maven-plugin/META-INF/maven/org.jenkins-ci.main/maven-plugin/pom.properties b/work/plugins/maven-plugin/META-INF/maven/org.jenkins-ci.main/maven-plugin/pom.properties
new file mode 100644
index 0000000..3b0922e
--- /dev/null
+++ b/work/plugins/maven-plugin/META-INF/maven/org.jenkins-ci.main/maven-plugin/pom.properties
@@ -0,0 +1,5 @@
+#Generated by Maven
+#Mon Apr 04 09:40:56 PDT 2011
+version=1.405
+groupId=org.jenkins-ci.main
+artifactId=maven-plugin
diff --git a/work/plugins/maven-plugin/META-INF/maven/org.jenkins-ci.main/maven-plugin/pom.xml b/work/plugins/maven-plugin/META-INF/maven/org.jenkins-ci.main/maven-plugin/pom.xml
new file mode 100644
index 0000000..eb83182
--- /dev/null
+++ b/work/plugins/maven-plugin/META-INF/maven/org.jenkins-ci.main/maven-plugin/pom.xml
@@ -0,0 +1,402 @@
+
+
+
+ 4.0.0
+
+ org.jenkins-ci.main
+ pom
+ 1.405
+
+
+ maven-plugin
+ hpi
+ Maven Integration plugin
+ This plug-in provides deep integration of Jenkins and Maven. This functionality used to be part of the Jenkins core.
+ Now it is a plug-in that is installed by default, but can be disabled.
+ http://wiki.jenkins-ci.org/display/JENKINS/Maven+2+Project+Plugin
+
+
+ 1.1
+ 3.0.3
+ ${mavenVersion}
+ 1.11
+ 1.4.3.1
+ 1.0-beta-7
+
+
+
+
+ org.jenkins-ci.main
+ jenkins-core
+ ${project.version}
+ provided
+
+
+ javax.servlet
+ servlet-api
+ 2.4
+ provided
+
+
+
+ org.jenkins-ci.main.maven
+ maven-agent
+ ${mavenInterceptorsVersion}
+
+
+ classworlds
+ classworlds
+
+
+
+
+
+ org.jenkins-ci.main.maven
+ maven-interceptor
+ ${mavenInterceptorsVersion}
+
+
+ classworlds
+ classworlds
+
+
+
+
+
+ org.jvnet.hudson
+ maven2.1-interceptor
+ 1.2
+
+
+
+ org.jenkins-ci.main.maven
+ maven3-agent
+ ${mavenInterceptorsVersion}
+
+
+
+ org.jenkins-ci.main.maven
+ maven3-interceptor
+ ${mavenInterceptorsVersion}
+
+
+
+ org.apache.ant
+ ant
+
+
+ org.apache.maven
+ maven-core
+ ${mavenVersion}
+
+
+ org.apache.maven
+ maven-compat
+ ${mavenVersion}
+
+
+
+ org.apache.maven
+ maven-aether-provider
+ ${mavenVersion}
+
+
+ org.apache.maven
+ maven-embedder
+ ${mavenVersion}
+
+
+
+
+ org.sonatype.aether
+ aether-api
+ ${aetherVersion}
+
+
+ org.sonatype.aether
+ aether-impl
+ ${aetherVersion}
+
+
+ org.sonatype.aether
+ aether-spi
+ ${aetherVersion}
+
+
+ org.sonatype.aether
+ aether-util
+ ${aetherVersion}
+
+
+ org.sonatype.aether
+ aether-connector-wagon
+ ${aetherVersion}
+
+
+ org.codehaus.plexus
+ plexus-container-default
+
+
+
+
+
+ org.sonatype.sisu
+ sisu-inject-plexus
+ ${sisuInjectVersion}
+
+
+
+ org.sonatype.sisu
+ sisu-inject-bean
+ ${sisuInjectVersion}
+
+
+
+ org.apache.maven.wagon
+ wagon-http-lightweight
+ ${wagonVersion}
+
+
+ nekohtml
+ nekohtml
+
+
+ nekohtml
+ xercesMinimal
+
+
+
+
+ org.apache.maven.wagon
+ wagon-file
+ ${wagonVersion}
+
+
+ org.apache.maven.wagon
+ wagon-ftp
+ ${wagonVersion}
+
+
+ org.apache.maven.wagon
+ wagon-ssh
+ ${wagonVersion}
+
+
+ org.apache.maven.wagon
+ wagon-ssh-external
+ ${wagonVersion}
+
+
+
+ org.apache.maven.wagon
+ wagon-provider-api
+ ${wagonVersion}
+
+
+ org.apache.maven.reporting
+ maven-reporting-api
+ 3.0
+
+
+ org.codehaus.plexus
+ plexus-classworlds
+ 2.3
+
+
+ org.jenkins-ci.lib
+ lib-jenkins-maven-artifact-manager
+ 1.1
+
+
+ commons-io
+ commons-io
+
+
+ org.jvnet.hudson
+ hudson-maven-embedder
+ 3.2
+
+
+ jtidy
+ jtidy
+
+
+ commons-cli
+ commons-cli
+
+
+ xml-apis
+ xml-apis
+
+
+
+ org.apache.maven.wagon
+ wagon-webdav
+
+
+
+
+ nekohtml
+ nekohtml
+
+
+ nekohtml
+ xercesMinimal
+
+
+
+
+
+
+
+ org.jvnet.hudson
+ wagon-webdav
+ 1.0-beta-2-hudson-1
+
+
+ jdom
+ jdom
+
+
+
+
+
+ net.sourceforge.nekohtml
+ nekohtml
+ 1.9.13
+
+
+
+ org.jenkins-ci.plugins
+ token-macro
+ 1.1
+ true
+
+
+
+
+
+
+ ${project.artifactId}
+ package
+
+
+ org.jenkins-ci.tools
+ maven-hpi-plugin
+
+ true
+
+ true
+ true
+
+
+
+ org.kohsuke.stapler
+ maven-stapler-plugin
+ true
+
+
+ org.jvnet.localizer
+ maven-localizer-plugin
+ 1.8
+
+
+
+ generate
+
+
+ Messages.properties
+ target/generated-sources/localizer
+
+
+
+
+
+ org.jvnet.maven-antrun-extended-plugin
+ maven-antrun-extended-plugin
+
+
+ resgen
+ generate-resources
+
+ run
+
+
+ false
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ cobertura2
+
+
+
+ org.codehaus.mojo
+ cobertura-maven-plugin
+ 2.4-apb-SNAPSHOT
+ true
+
+
+ html
+ xml
+
+
+
+
+ coverage-instrument
+ process-test-classes
+
+ instrument
+
+
+
+ coverage-report
+ test
+
+ generate-report
+
+
+
+
+
+
+
+
+
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/META-INF/annotations/hudson.Extension b/work/plugins/maven-plugin/WEB-INF/classes/META-INF/annotations/hudson.Extension
new file mode 100644
index 0000000..0896e79
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/META-INF/annotations/hudson.Extension
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/META-INF/exposed.stapler-beans b/work/plugins/maven-plugin/WEB-INF/classes/META-INF/exposed.stapler-beans
new file mode 100644
index 0000000..ad21b13
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/META-INF/exposed.stapler-beans
@@ -0,0 +1,2 @@
+hudson.maven.MavenModule
+hudson.maven.MavenModuleSet
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/META-INF/services/hudson.Plugin b/work/plugins/maven-plugin/WEB-INF/classes/META-INF/services/hudson.Plugin
new file mode 100644
index 0000000..5fd41b3
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/META-INF/services/hudson.Plugin
@@ -0,0 +1 @@
+hudson.maven.PluginImpl
\ No newline at end of file
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/classworlds.jar b/work/plugins/maven-plugin/WEB-INF/classes/classworlds.jar
new file mode 100644
index 0000000..6ec5c21
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/classworlds.jar
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/AbstractMavenBuild.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/AbstractMavenBuild.class
new file mode 100644
index 0000000..5335ae0
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/AbstractMavenBuild.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/AbstractMavenBuilder.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/AbstractMavenBuilder.class
new file mode 100644
index 0000000..9c97658
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/AbstractMavenBuilder.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/AbstractMavenProcessFactory$1.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/AbstractMavenProcessFactory$1.class
new file mode 100644
index 0000000..1c0019a
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/AbstractMavenProcessFactory$1.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/AbstractMavenProcessFactory$Acceptor.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/AbstractMavenProcessFactory$Acceptor.class
new file mode 100644
index 0000000..16bcb3e
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/AbstractMavenProcessFactory$Acceptor.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/AbstractMavenProcessFactory$Connection.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/AbstractMavenProcessFactory$Connection.class
new file mode 100644
index 0000000..8b510bc
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/AbstractMavenProcessFactory$Connection.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/AbstractMavenProcessFactory$GetCharset.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/AbstractMavenProcessFactory$GetCharset.class
new file mode 100644
index 0000000..26fe705
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/AbstractMavenProcessFactory$GetCharset.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/AbstractMavenProcessFactory$GetRemotingJar.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/AbstractMavenProcessFactory$GetRemotingJar.class
new file mode 100644
index 0000000..c29b362
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/AbstractMavenProcessFactory$GetRemotingJar.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/AbstractMavenProcessFactory$SocketHandler$AcceptorImpl.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/AbstractMavenProcessFactory$SocketHandler$AcceptorImpl.class
new file mode 100644
index 0000000..8ec366b
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/AbstractMavenProcessFactory$SocketHandler$AcceptorImpl.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/AbstractMavenProcessFactory$SocketHandler.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/AbstractMavenProcessFactory$SocketHandler.class
new file mode 100644
index 0000000..553a729
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/AbstractMavenProcessFactory$SocketHandler.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/AbstractMavenProcessFactory.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/AbstractMavenProcessFactory.class
new file mode 100644
index 0000000..7ae7715
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/AbstractMavenProcessFactory.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/AbstractMavenProject$MavenModuleDependency.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/AbstractMavenProject$MavenModuleDependency.class
new file mode 100644
index 0000000..ac83bc5
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/AbstractMavenProject$MavenModuleDependency.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/AbstractMavenProject.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/AbstractMavenProject.class
new file mode 100644
index 0000000..78b4903
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/AbstractMavenProject.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/AggregatableAction.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/AggregatableAction.class
new file mode 100644
index 0000000..e8b37f1
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/AggregatableAction.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/EmbedderLoggerImpl.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/EmbedderLoggerImpl.class
new file mode 100644
index 0000000..78916d5
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/EmbedderLoggerImpl.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/ExecutedMojo$Cache.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/ExecutedMojo$Cache.class
new file mode 100644
index 0000000..e738038
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/ExecutedMojo$Cache.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/ExecutedMojo.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/ExecutedMojo.class
new file mode 100644
index 0000000..d036079
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/ExecutedMojo.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/FilteredChangeLogSet.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/FilteredChangeLogSet.class
new file mode 100644
index 0000000..dbf4949
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/FilteredChangeLogSet.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/FilteredChangeLogSet/digest.jelly b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/FilteredChangeLogSet/digest.jelly
new file mode 100644
index 0000000..8fde3d6
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/FilteredChangeLogSet/digest.jelly
@@ -0,0 +1,27 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/FilteredChangeLogSet/index.jelly b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/FilteredChangeLogSet/index.jelly
new file mode 100644
index 0000000..9e0d2fc
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/FilteredChangeLogSet/index.jelly
@@ -0,0 +1,27 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/Maven3Builder$FilterImpl.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/Maven3Builder$FilterImpl.class
new file mode 100644
index 0000000..631df6e
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/Maven3Builder$FilterImpl.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/Maven3Builder$MavenExecutionListener.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/Maven3Builder$MavenExecutionListener.class
new file mode 100644
index 0000000..60ddd39
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/Maven3Builder$MavenExecutionListener.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/Maven3Builder.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/Maven3Builder.class
new file mode 100644
index 0000000..332f96a
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/Maven3Builder.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/Maven3ProcessFactory$1.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/Maven3ProcessFactory$1.class
new file mode 100644
index 0000000..8fbd2f4
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/Maven3ProcessFactory$1.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/Maven3ProcessFactory$GetClassWorldsJar.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/Maven3ProcessFactory$GetClassWorldsJar.class
new file mode 100644
index 0000000..3868297
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/Maven3ProcessFactory$GetClassWorldsJar.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/Maven3ProcessFactory.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/Maven3ProcessFactory.class
new file mode 100644
index 0000000..02d4762
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/Maven3ProcessFactory.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenAggregatedReport.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenAggregatedReport.class
new file mode 100644
index 0000000..7bfab14
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenAggregatedReport.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild$1.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild$1.class
new file mode 100644
index 0000000..1feae1b
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild$1.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild$Builder$FilterImpl.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild$Builder$FilterImpl.class
new file mode 100644
index 0000000..24b3977
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild$Builder$FilterImpl.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild$Builder.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild$Builder.class
new file mode 100644
index 0000000..b9cf862
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild$Builder.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild$ProxyImpl.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild$ProxyImpl.class
new file mode 100644
index 0000000..20fae78
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild$ProxyImpl.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild$ProxyImpl2$1.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild$ProxyImpl2$1.class
new file mode 100644
index 0000000..6000551
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild$ProxyImpl2$1.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild$ProxyImpl2.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild$ProxyImpl2.class
new file mode 100644
index 0000000..27a7205
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild$ProxyImpl2.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild$RunnerImpl.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild$RunnerImpl.class
new file mode 100644
index 0000000..8b281d0
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild$RunnerImpl.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild.class
new file mode 100644
index 0000000..ff617ea
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/actions.jelly b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/actions.jelly
new file mode 100644
index 0000000..137a878
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/actions.jelly
@@ -0,0 +1,29 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/actions_da.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/actions_da.properties
new file mode 100644
index 0000000..907f59b
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/actions_da.properties
@@ -0,0 +1,23 @@
+# The MIT License
+#
+# Copyright (c) 2004-2010, Sun Microsystems, Inc. Kohsuke Kawaguchi. Knud Poulsen.
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Executed\ Mojos=Afviklede Mojos
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/actions_de.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/actions_de.properties
new file mode 100644
index 0000000..4cd167c
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/actions_de.properties
@@ -0,0 +1,23 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Simon Wiest
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Executed\ Mojos=Ausgeführte Mojos
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/actions_es.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/actions_es.properties
new file mode 100644
index 0000000..6aff749
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/actions_es.properties
@@ -0,0 +1,23 @@
+# The MIT License
+#
+# Copyright (c) 2004-2010, Sun Microsystems, Inc.
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Executed\ Mojos=''Mojos'' ejecutados
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/actions_fr.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/actions_fr.properties
new file mode 100644
index 0000000..32cf00b
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/actions_fr.properties
@@ -0,0 +1,23 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Eric Lefevre-Ardant
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Executed\ Mojos=Mojos exécutés
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/actions_it.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/actions_it.properties
new file mode 100644
index 0000000..87b1723
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/actions_it.properties
@@ -0,0 +1,23 @@
+# The MIT License
+#
+# Copyright (c) 2004-2010, Sun Microsystems, Inc.
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Executed\ Mojos=Mojo eseguiti
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/actions_ja.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/actions_ja.properties
new file mode 100644
index 0000000..8821954
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/actions_ja.properties
@@ -0,0 +1,23 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Executed\ Mojos=\u5b9f\u884c\u3055\u308c\u305fMojo
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/actions_nl.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/actions_nl.properties
new file mode 100644
index 0000000..6052cb9
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/actions_nl.properties
@@ -0,0 +1,23 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, id:sorokh
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Executed\ Mojos=Uitgevoerde Mojos
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/actions_pt_BR.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/actions_pt_BR.properties
new file mode 100644
index 0000000..9cb9f56
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/actions_pt_BR.properties
@@ -0,0 +1,23 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Reginaldo L. Russinholi, Cleiber Silva
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Executed\ Mojos=Mojos Executados
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/actions_ru.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/actions_ru.properties
new file mode 100644
index 0000000..aecddaa
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/actions_ru.properties
@@ -0,0 +1,23 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Mike Salnikov
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Executed\ Mojos=\u0412\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u043d\u044b\u0435 Mojos
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/actions_sv_SE.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/actions_sv_SE.properties
new file mode 100644
index 0000000..b39007d
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/actions_sv_SE.properties
@@ -0,0 +1,23 @@
+# The MIT License
+#
+# Copyright (c) 2004-2010, Sun Microsystems, Inc.
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Executed\ Mojos=K\u00F6rda Mojos
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/actions_tr.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/actions_tr.properties
new file mode 100644
index 0000000..1a49ae2
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/actions_tr.properties
@@ -0,0 +1,23 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Oguz Dag
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Executed\ Mojos=\u00c7al\u0131\u015ft\u0131r\u0131lan Mojolar
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/executedMojos.jelly b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/executedMojos.jelly
new file mode 100644
index 0000000..94d8967
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/executedMojos.jelly
@@ -0,0 +1,81 @@
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/executedMojos_da.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/executedMojos_da.properties
new file mode 100644
index 0000000..8f87b71
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/executedMojos_da.properties
@@ -0,0 +1,32 @@
+# The MIT License
+#
+# Copyright (c) 2004-2010, Sun Microsystems, Inc. Kohsuke Kawaguchi. Knud Poulsen.
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Version=Version
+Duration=Varighed
+Execution=Eksekvering
+Build\ in\ progress.=Byg i fremskridt.
+Plugin=Plugin
+fingerprint=filfingeraftryk
+Fingerprint=Filfingeraftryk
+Executed\ Mojos=Afviklede Mojos
+Goal=M\u00e5l
+No\ mojos\ executed.=Ingen mojos afviklet.
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/executedMojos_de.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/executedMojos_de.properties
new file mode 100644
index 0000000..0694bdf
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/executedMojos_de.properties
@@ -0,0 +1,32 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Simon Wiest
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Executed\ Mojos=Ausgeführte Mojos
+Build\ in\ progress.=Build wird gerade ausgeführt.
+No\ mojos\ executed.=Keine Mojos ausgeführt.
+Plugin=Plugin
+Version=Version
+Goal=Goal
+Execution=Ausführung
+Duration=Dauer
+Fingerprint=Fingerabdruck
+fingerprint=Fingerabdruck
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/executedMojos_es.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/executedMojos_es.properties
new file mode 100644
index 0000000..4b0b1e4
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/executedMojos_es.properties
@@ -0,0 +1,33 @@
+# The MIT License
+#
+# Copyright (c) 2004-2010, Sun Microsystems, Inc.
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Build\ in\ progress.=Ejecución en proceso
+Executed\ Mojos=Plugins de maven (Mojos) ejecutados
+fingerprint=firma
+Execution=Ejecución
+Plugin=Plugin
+Version=Versión
+Fingerprint=Firma
+Goal=Gol
+No\ mojos\ executed.=No se ejecutó ningún plugin maven (mojo)
+Duration=Duración
+
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/executedMojos_fr.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/executedMojos_fr.properties
new file mode 100644
index 0000000..05c0cdf
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/executedMojos_fr.properties
@@ -0,0 +1,32 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Eric Lefevre-Ardant
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Build\ in\ progress.=Build en cours
+No\ mojos\ executed.=Aucun mojo n''a été exécuté
+Plugin=
+Version=
+Goal=Goal
+Execution=Exécution
+Duration=Durée
+Fingerprint=Empreinte numérique
+fingerprint=empreinte numérique
+Executed\ Mojos=Mojos exécutés
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/executedMojos_ja.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/executedMojos_ja.properties
new file mode 100644
index 0000000..9727a1b
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/executedMojos_ja.properties
@@ -0,0 +1,32 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Executed\ Mojos=\u5b9f\u884c\u3055\u308c\u305fMojo
+Build\ in\ progress.=\u30d3\u30eb\u30c9\u304c\u9032\u884c\u4e2d\u3067\u3059
+No\ mojos\ executed.=\u4f55\u306eMojo\u3082\u5b9f\u884c\u3055\u308c\u307e\u305b\u3093\u3067\u3057\u305f
+Plugin=\u30d7\u30e9\u30b0\u30a4\u30f3
+Version=\u30d0\u30fc\u30b8\u30e7\u30f3
+Goal=\u30b4\u30fc\u30eb
+Execution=\u5b9f\u884cID
+Duration=\u6240\u8981\u6642\u9593
+Fingerprint=\u30d5\u30a1\u30a4\u30eb\u6307\u7d0b
+fingerprint=\u30d5\u30a1\u30a4\u30eb\u6307\u7d0b
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/executedMojos_nl.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/executedMojos_nl.properties
new file mode 100644
index 0000000..54061df
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/executedMojos_nl.properties
@@ -0,0 +1,32 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, id:sorokh
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Executed\ Mojos=Uitgevoerde Mojos.
+Build\ in\ progress.=Bouwpoging in uitvoering.
+No\ mojos\ executed.=Geen mojos uitgevoerd.
+Plugin=Plugin
+Version=Versie
+Goal=Doel
+Execution=Uitvoering
+Duration=Duur
+Fingerprint=Vingerafdruk
+fingerprint=vingerafdruk
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/executedMojos_pt_BR.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/executedMojos_pt_BR.properties
new file mode 100644
index 0000000..a666b12
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/executedMojos_pt_BR.properties
@@ -0,0 +1,32 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Reginaldo L. Russinholi, Cleiber Silva
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Executed\ Mojos=Mojos Executados
+Build\ in\ progress.=Constru\u00e7\u00e3o em progresso.
+No\ mojos\ executed.=Nenhum mojo executado.
+Plugin=Plugin
+Version=Vers\u00e3o
+Goal=Objetivo
+Execution=Execu\u00e7\u00e3o
+Duration=Dura\u00e7\u00e3o
+Fingerprint=Identifica\u00e7\u00e3o
+fingerprint=Identifica\u00e7\u00e3o
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/executedMojos_ru.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/executedMojos_ru.properties
new file mode 100644
index 0000000..3891fca
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/executedMojos_ru.properties
@@ -0,0 +1,32 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Mike Salnikov
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Executed\ Mojos=\u0412\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u043d\u044b\u0435 Mojos
+Build\ in\ progress.=\u0421\u0431\u043e\u0440\u043a\u0438 \u0432 \u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0435.
+No\ mojos\ executed.=\u041d\u0435 \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u043e \u043d\u0438 \u043e\u0434\u043d\u043e\u0433\u043e Mojo.
+Plugin=\u041f\u043b\u0430\u0433\u0438\u043d
+Version=\u0412\u0435\u0440\u0441\u0438\u044f
+Goal=\u0426\u0435\u043b\u044c
+Execution=\u0417\u0430\u043f\u0443\u0441\u043a
+Duration=\u041f\u0440\u043e\u0434\u043e\u043b\u0436\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u044c
+Fingerprint=\u041e\u0442\u043f\u0435\u0447\u0430\u0442\u043e\u043a (fingerprint)
+fingerprint=\u043e\u0442\u043f\u0435\u0447\u0430\u0442\u043e\u043a
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/executedMojos_tr.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/executedMojos_tr.properties
new file mode 100644
index 0000000..f933802
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuild/executedMojos_tr.properties
@@ -0,0 +1,32 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Oguz Dag
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Executed\ Mojos=\u00c7al\u0131\u015ft\u0131r\u0131lan Mojolar
+Build\ in\ progress.=Yap\u0131land\u0131rma ilerliyor.
+No\ mojos\ executed.=Herhangi bir mojo \u00e7al\u0131\u015ft\u0131r\u0131lmad\u0131.
+Plugin=Eklenti
+Version=Versiyon
+Goal=Hedef
+Execution=\u00c7al\u0131\u015ft\u0131rma
+Duration=S\u00fcre
+Fingerprint=Parmakizi
+fingerprint=parmakizi
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuildInformation.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuildInformation.class
new file mode 100644
index 0000000..8801dec
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuildInformation.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuildProxy$BuildCallable.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuildProxy$BuildCallable.class
new file mode 100644
index 0000000..bd202e8
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuildProxy$BuildCallable.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuildProxy$Filter$AsyncInvoker.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuildProxy$Filter$AsyncInvoker.class
new file mode 100644
index 0000000..7b6658e
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuildProxy$Filter$AsyncInvoker.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuildProxy$Filter.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuildProxy$Filter.class
new file mode 100644
index 0000000..8b57acf
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuildProxy$Filter.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuildProxy.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuildProxy.class
new file mode 100644
index 0000000..b718649
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuildProxy.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuildProxy2$Filter.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuildProxy2$Filter.class
new file mode 100644
index 0000000..ecdae79
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuildProxy2$Filter.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuildProxy2.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuildProxy2.class
new file mode 100644
index 0000000..0442768
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuildProxy2.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuilder$Adapter.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuilder$Adapter.class
new file mode 100644
index 0000000..1c18a46
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuilder$Adapter.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuilder.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuilder.class
new file mode 100644
index 0000000..153698c
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenBuilder.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenComputerListener.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenComputerListener.class
new file mode 100644
index 0000000..46aeeb6
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenComputerListener.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenEmbedderRequest.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenEmbedderRequest.class
new file mode 100644
index 0000000..cd62f8e
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenEmbedderRequest.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModule$MavenDependencyComputationData.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModule$MavenDependencyComputationData.class
new file mode 100644
index 0000000..eaceb57
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModule$MavenDependencyComputationData.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModule.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModule.class
new file mode 100644
index 0000000..8c4a03c
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModule.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModule.javadoc b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModule.javadoc
new file mode 100644
index 0000000..a236a13
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModule.javadoc
@@ -0,0 +1 @@
+#Mon Apr 04 09:40:54 PDT 2011
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModule/configure-entries.jelly b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModule/configure-entries.jelly
new file mode 100644
index 0000000..75f8a50
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModule/configure-entries.jelly
@@ -0,0 +1,43 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModule/configure-entries_da.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModule/configure-entries_da.properties
new file mode 100644
index 0000000..121bbd1
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModule/configure-entries_da.properties
@@ -0,0 +1,25 @@
+# The MIT License
+#
+# Copyright (c) 2004-2010, Sun Microsystems, Inc. Kohsuke Kawaguchi. Knud Poulsen.
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Goals=M\u00e5l
+Build=Byg
+Build\ Settings=Byggeindstillinger
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModule/configure-entries_de.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModule/configure-entries_de.properties
new file mode 100644
index 0000000..c0596d2
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModule/configure-entries_de.properties
@@ -0,0 +1,25 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Simon Wiest
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Build=Build
+Goals=Goals
+Build\ Settings=Build-Einstellungen
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModule/configure-entries_es.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModule/configure-entries_es.properties
new file mode 100644
index 0000000..995f3eb
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModule/configure-entries_es.properties
@@ -0,0 +1,25 @@
+# The MIT License
+#
+# Copyright (c) 2004-2010, Sun Microsystems, Inc.
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Build=Ejecución
+Build\ Settings=Propiedades de la ejecución
+Goals=Goles
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModule/configure-entries_fr.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModule/configure-entries_fr.properties
new file mode 100644
index 0000000..245493c
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModule/configure-entries_fr.properties
@@ -0,0 +1,25 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Eric Lefevre-Ardant
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Build=
+Goals=
+Build\ Settings=Configuration du Build
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModule/configure-entries_ja.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModule/configure-entries_ja.properties
new file mode 100644
index 0000000..ab016a1
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModule/configure-entries_ja.properties
@@ -0,0 +1,25 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Build=\u30d3\u30eb\u30c9
+Goals=\u30b4\u30fc\u30eb
+Build\ Settings=\u30d3\u30eb\u30c9\u8a2d\u5b9a
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModule/configure-entries_nl.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModule/configure-entries_nl.properties
new file mode 100644
index 0000000..2b5929b
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModule/configure-entries_nl.properties
@@ -0,0 +1,25 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, id:sorokh
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Build=Bouwpoging
+Goals=Doel
+Build\ Settings=Bouwconfiguratie
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModule/configure-entries_pt_BR.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModule/configure-entries_pt_BR.properties
new file mode 100644
index 0000000..6d33714
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModule/configure-entries_pt_BR.properties
@@ -0,0 +1,25 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Reginaldo L. Russinholi, Cleiber Silva
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Build=Construir
+Goals=Objetivos
+Build\ Settings=Configura\u00e7\u00f5es de Constru\u00e7\u00e3o
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModule/configure-entries_ru.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModule/configure-entries_ru.properties
new file mode 100644
index 0000000..c14220d
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModule/configure-entries_ru.properties
@@ -0,0 +1,25 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Mike Salnikov
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Build=\u0421\u0431\u043e\u0440\u043a\u0430
+Goals=\u0426\u0435\u043b\u0438
+Build\ Settings=\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u0441\u0431\u043e\u0440\u043a\u0438
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModule/configure-entries_tr.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModule/configure-entries_tr.properties
new file mode 100644
index 0000000..3d0525b
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModule/configure-entries_tr.properties
@@ -0,0 +1,25 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Oguz Dag
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Build=Yap\u0131land\u0131rma
+Goals=Hedefler
+Build\ Settings=Yap\u0131land\u0131rma Ayarlar\u0131
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet$1.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet$1.class
new file mode 100644
index 0000000..66342e2
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet$1.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet$2.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet$2.class
new file mode 100644
index 0000000..4cc2e69
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet$2.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet$3.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet$3.class
new file mode 100644
index 0000000..84d70b2
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet$3.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet$DescriptorImpl.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet$DescriptorImpl.class
new file mode 100644
index 0000000..e28f173
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet$DescriptorImpl.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet.class
new file mode 100644
index 0000000..d407683
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet.javadoc b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet.javadoc
new file mode 100644
index 0000000..a236a13
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet.javadoc
@@ -0,0 +1 @@
+#Mon Apr 04 09:40:54 PDT 2011
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/actions.jelly b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/actions.jelly
new file mode 100644
index 0000000..fe98be2
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/actions.jelly
@@ -0,0 +1,37 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/actions_da.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/actions_da.properties
new file mode 100644
index 0000000..f9bec65
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/actions_da.properties
@@ -0,0 +1,24 @@
+# The MIT License
+#
+# Copyright (c) 2004-2010, Sun Microsystems, Inc. Kohsuke Kawaguchi. Knud Poulsen.
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Modules=Moduler
+Delete\ All\ Disabled\ Modules=Slet Alle Moduler Der Er Sl\u00e5et Fra
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/actions_de.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/actions_de.properties
new file mode 100644
index 0000000..bdea759
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/actions_de.properties
@@ -0,0 +1,24 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Simon Wiest
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Delete\ All\ Disabled\ Modules=Lösche alle deaktivierten Module
+Modules=Module
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/actions_es.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/actions_es.properties
new file mode 100644
index 0000000..a131dad
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/actions_es.properties
@@ -0,0 +1,24 @@
+# The MIT License
+#
+# Copyright (c) 2004-2010, Sun Microsystems, Inc.
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Delete\ All\ Disabled\ Modules=Borrar todos los módulos desactivados
+Modules=Módulos
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/actions_fr.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/actions_fr.properties
new file mode 100644
index 0000000..c559322
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/actions_fr.properties
@@ -0,0 +1,24 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Eric Lefevre-Ardant
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Delete\ All\ Disabled\ Modules=Supprimer tous les modules désactivés
+Modules=Modules
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/actions_hu.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/actions_hu.properties
new file mode 100644
index 0000000..7c6eb03
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/actions_hu.properties
@@ -0,0 +1,23 @@
+# The MIT License
+#
+# Copyright (c) 2004-2010, Sun Microsystems, Inc.
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Modules=B\u0151v\u00EDtm\u00E9nyek
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/actions_it.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/actions_it.properties
new file mode 100644
index 0000000..15784c4
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/actions_it.properties
@@ -0,0 +1,23 @@
+# The MIT License
+#
+# Copyright (c) 2004-2010, Sun Microsystems, Inc.
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Modules=Moduli
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/actions_ja.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/actions_ja.properties
new file mode 100644
index 0000000..0525616
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/actions_ja.properties
@@ -0,0 +1,24 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, id:cactusman
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Delete\ All\ Disabled\ Modules=\u7121\u52b9\u306a\u30e2\u30b8\u30e5\u30fc\u30eb\u3092\u5168\u3066\u524a\u9664
+Modules=\u30e2\u30b8\u30e5\u30fc\u30eb
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/actions_nb_NO.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/actions_nb_NO.properties
new file mode 100644
index 0000000..6c4aa81
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/actions_nb_NO.properties
@@ -0,0 +1,23 @@
+# The MIT License
+#
+# Copyright (c) 2004-2010, Sun Microsystems, Inc.
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Modules=Moduler
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/actions_nl.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/actions_nl.properties
new file mode 100644
index 0000000..06e0de8
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/actions_nl.properties
@@ -0,0 +1,24 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, id:sorokh
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Delete\ All\ Disabled\ Modules=Verwijder alle gedesactiveerde modules
+Modules=Modules
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/actions_pt_BR.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/actions_pt_BR.properties
new file mode 100644
index 0000000..a1e8eb1
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/actions_pt_BR.properties
@@ -0,0 +1,24 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Reginaldo L. Russinholi, Cleiber Silva
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Delete\ All\ Disabled\ Modules=Excluir Todo os M\u00f3dulos Desabilitados
+Modules=M\u00f3dulos
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/actions_ru.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/actions_ru.properties
new file mode 100644
index 0000000..db940fe
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/actions_ru.properties
@@ -0,0 +1,24 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Mike Salnikov
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Delete\ All\ Disabled\ Modules=\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0432\u0441\u0435 \u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0435 \u043c\u043e\u0434\u0443\u043b\u0438
+Modules=\u041c\u043e\u0434\u0443\u043b\u0438
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/actions_sv_SE.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/actions_sv_SE.properties
new file mode 100644
index 0000000..b2f6f18
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/actions_sv_SE.properties
@@ -0,0 +1,24 @@
+# The MIT License
+#
+# Copyright (c) 2004-2010, Sun Microsystems, Inc.
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Delete\ All\ Disabled\ Modules=Ta bort alla inaktiverade moduler
+Modules=Moduler
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/actions_tr.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/actions_tr.properties
new file mode 100644
index 0000000..bff8e9e
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/actions_tr.properties
@@ -0,0 +1,24 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Oguz Dag
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Delete\ All\ Disabled\ Modules=T\u00fcm devre d\u0131\u015f\u0131 b\u0131rak\u0131lm\u0131\u015f mod\u00fcller sil
+Modules=Mod\u00fcller
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/ajaxBuildQueue.jelly b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/ajaxBuildQueue.jelly
new file mode 100644
index 0000000..73731b8
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/ajaxBuildQueue.jelly
@@ -0,0 +1,32 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/configure-entries.jelly b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/configure-entries.jelly
new file mode 100644
index 0000000..5e565c0
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/configure-entries.jelly
@@ -0,0 +1,116 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/configure-entries.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/configure-entries.properties
new file mode 100644
index 0000000..d91e31e
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/configure-entries.properties
@@ -0,0 +1,24 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Seiji Sogabe
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Maven\ Version.error.1=Jenkins needs to know where your Maven2 is installed.
+Maven\ Version.error.2=Please do so from the system configuration.
\ No newline at end of file
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/configure-entries_da.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/configure-entries_da.properties
new file mode 100644
index 0000000..4a83e94
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/configure-entries_da.properties
@@ -0,0 +1,35 @@
+# The MIT License
+#
+# Copyright (c) 2004-2010, Sun Microsystems, Inc. Kohsuke Kawaguchi. Knud Poulsen.
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Disable\ automatic\ artifact\ archiving=Sl\u00e5 automatisk artifaktarkivering fra
+Maven\ Version.error.2=Dette g\u00f8res fra system konfigurationen.
+Build=Byg
+Maven\ Version=Maven version
+Use\ private\ Maven\ repository=Benyt et privat Mavenarkiv
+Incremental\ build\ -\ only\ build\ changed\ modules=Inkrementel byg - byg kun moduler med \u00e6ndringer
+Maven\ Version.error.1=Jenkins har brug for at vide hvor din Maven2/3 er installeret.
+Goals\ and\ options=M\u00e5l og tilvalg
+Build\ modules\ in\ parallel=Byg moduler i parallel
+Build\ Settings=Byggeindstillinger
+Build\ whenever\ a\ SNAPSHOT\ dependency\ is\ built=Byg hver gang en \u00f8jebliksbilledeafh\u00e6ngihed bliver bygget
+Root\ POM=Rod POM
+Alternate\ settings\ file=Fil med alternative indstillinger
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/configure-entries_de.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/configure-entries_de.properties
new file mode 100644
index 0000000..a0a2bc2
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/configure-entries_de.properties
@@ -0,0 +1,38 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Simon Wiest
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Build=Build
+Maven\ Version=Maven-Version
+Root\ POM=Stamm-POM
+Build\ modules\ in\ parallel=Baue Module parallel
+Disable\ automatic\ artifact\ archiving=Deaktiviere automatische Archivierung von Artefakten
+Build\ Settings=Build-Einstellungen
+Goals\ and\ options=Goals und Optionen
+Use\ private\ Maven\ repository=Verwende privates Maven-Repository
+Alternate\ settings\ file=Alternative Settings-Datei
+Build\ whenever\ a\ SNAPSHOT\ dependency\ is\ built=Baue dieses Projekt, wenn eine SNAPSHOT-Abhängigkeit gebaut wurde
+Incremental\ build\ -\ only\ build\ changed\ modules=Inkrementelles Bauen - baut nur geänderte Module
+Maven\ Version.error.1=Jenkins muss Ihr Maven2/3-Installationsverzeichnis kennen.
+Maven\ Version.error.2=Bitte geben Sie dieses in der Systemkonfiguration an.
+Resolve\ Dependencies\ during\ Pom\ parsing=Löse Abhängigkeiten während der Pom-Analyse auf
+Process\ Plugins\ during\ Pom\ parsing=Arbeite Plugins während der Pom-Analyse ab
+Maven\ Validation\ Level=Maven Validierungsstufe
\ No newline at end of file
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/configure-entries_es.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/configure-entries_es.properties
new file mode 100644
index 0000000..ccba7b5
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/configure-entries_es.properties
@@ -0,0 +1,39 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Seiji Sogabe
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Maven\ Version.error.1=Jenkins necesita saber donde está instalado Maven2/3.
+Maven\ Version.error.2=Configuraló en la pantalla de configuración del sistema.
+Root\ POM=Fichero POM raíz
+Build=Proyecto
+Goals\ and\ options=Goles y opciones
+Use\ private\ Maven\ repository=Utilizar un repositorio maven privado
+Build\ Settings=Propiedades del proyecto
+Build\ whenever\ a\ SNAPSHOT\ dependency\ is\ built=Ejecutar siempre que cualquier ''SNAPSHOT'' de los que dependa sea creado
+Maven\ Version=Versión de maven
+Disable\ automatic\ artifact\ archiving=Desactivar automáticamente el archivado de artefactos
+Alternate\ settings\ file=Fichero alternativo de configuración
+Incremental\ build\ -\ only\ build\ changed\ modules=Ejecución incremental (Sólo ejecutar los módulos que tengan cambios)
+Build\ modules\ in\ parallel=Ejecutar módulos en paralelo
+Process\ Plugins\ during\ Pom\ parsing=Procesar los plugins mientras se procesa el fichero "Pom"
+Resolve\ Dependencies\ during\ Pom\ parsing=Resolver dependencias mientras se procesa el fichero "Pom"
+Maven\ Validation\ Level=Nivel de validación "Maven"
+
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/configure-entries_fr.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/configure-entries_fr.properties
new file mode 100644
index 0000000..f960dcf
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/configure-entries_fr.properties
@@ -0,0 +1,36 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Eric Lefevre-Ardant
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Alternate\ settings\ file=Fichier settings alternatif
+Block\ build\ when\ dependency\ building=Bloquer le build pendant la construction des d\u00E9pendances
+Build=Build
+Incremental\ build\ -\ only\ build\ changed\ modules=Construction incr\u00E9mentale - ne faire la construction (build) que pour les modules chang\u00E9s
+Maven\ Version=Version de Maven
+Root\ POM=POM Racine
+Build\ modules\ in\ parallel=Construire les modules en parallèle
+Build\ Settings=Configuration du build
+Use\ private\ Maven\ repository=Utilise un repository Maven priv\u00E9
+Use\ private\ maven\ repository=Utiliser un repository Maven privé
+Goals\ and\ options=Goals et options
+Maven\ Version.error.1=Jenkins a besoin de savoir où Maven2/3 est installé.
+Maven\ Version.error.2=Veuillez le faire dans la configuration système.
+Build\ whenever\ a\ SNAPSHOT\ dependency\ is\ built=Lance un build à chaque fois qu''une dépendance SNAPSHOT est construite
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/configure-entries_ja.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/configure-entries_ja.properties
new file mode 100644
index 0000000..3cd10c7
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/configure-entries_ja.properties
@@ -0,0 +1,39 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Seiji Sogabe
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Build=\u30d3\u30eb\u30c9
+Maven\ Version=\u4f7f\u7528\u3059\u308bMaven
+Maven\ Version.error.1=Maven2/3\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u5148\u3092\u8a2d\u5b9a\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3002
+Maven\ Version.error.2=\u30b7\u30b9\u30c6\u30e0\u306e\u8a2d\u5b9a\u3067\u8a2d\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044\u3002
+Root\ POM=\u30eb\u30fc\u30c8POM
+Goals\ and\ options=\u30b4\u30fc\u30eb\u3068\u30aa\u30d7\u30b7\u30e7\u30f3
+Alternate\ settings\ file=settings.xml
+Incremental\ build\ -\ only\ build\ changed\ modules=\u30a4\u30f3\u30af\u30ea\u30e1\u30f3\u30bf\u30eb\u30d3\u30eb\u30c9 - \u5909\u66f4\u3055\u308c\u305f\u30e2\u30b8\u30e5\u30fc\u30eb\u306e\u307f\u30d3\u30eb\u30c9
+Build\ modules\ in\ parallel=\u30e2\u30b8\u30e5\u30fc\u30eb\u3092\u500b\u5225\u306b\u4e26\u5217\u30d3\u30eb\u30c9
+Use\ private\ Maven\ repository=\u5c02\u7528\u306eMaven\u30ea\u30dd\u30b8\u30c8\u30ea\u3092\u4f7f\u7528
+Resolve\ Dependencies\ during\ Pom\ parsing=POM\u89e3\u6790\u4e2d\u306b\u4f9d\u5b58\u6027\u3092\u89e3\u6c7a
+Process\ Plugins\ during\ Pom\ parsing=POM\u89e3\u6790\u4e2d\u306b\u30d7\u30e9\u30b0\u30a4\u30f3\u3092\u5b9f\u884c
+Maven\ Validation\ Level=
+Build\ Settings=\u30d3\u30eb\u30c9\u8a2d\u5b9a
+Build\ whenever\ a\ SNAPSHOT\ dependency\ is\ built=\u4f9d\u5b58\u3059\u308b\u30b9\u30ca\u30c3\u30d7\u30b7\u30e7\u30c3\u30c8\u304c\u30d3\u30eb\u30c9\u3055\u308c\u305f\u3068\u304d\u306b\u30d3\u30eb\u30c9
+Disable\ automatic\ artifact\ archiving=\u6210\u679c\u7269\u3092\u81ea\u52d5\u4fdd\u5b58\u3057\u306a\u3044
+
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/configure-entries_nl.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/configure-entries_nl.properties
new file mode 100644
index 0000000..f28de02
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/configure-entries_nl.properties
@@ -0,0 +1,28 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, id:sorokh
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Build=Bouwpoging
+Maven\ Version=Maven versie
+Root\ POM=Top niveau POM
+Goals=Doel
+Build\ modules\ in\ parallel=Bouw modules parallel
+Build\ Settings=Bouwconfiguratie
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/configure-entries_pt_BR.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/configure-entries_pt_BR.properties
new file mode 100644
index 0000000..9c8b070
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/configure-entries_pt_BR.properties
@@ -0,0 +1,37 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Reginaldo L. Russinholi, Cleiber Silva
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Build=Construir
+Maven\ Version=Vers\u00e3o do Maven
+Root\ POM=POM Ra\u00edz
+Build\ modules\ in\ parallel=Construir m\u00f3dulos em paralelo
+Build\ Settings=Configura\u00e7\u00f5es de Constru\u00e7\u00e3o
+Disable\ automatic\ artifact\ archiving=Desabilitar arquivamento autom\u00e1tico de artefatos
+# Please do so from the system configuration.
+Maven\ Version.error.2=Favor fazer a configura\u00e7\u00e3o do sistema.
+Use\ private\ Maven\ repository=Usar reposit\u00f3rio privado Maven
+Incremental\ build\ -\ only\ build\ changed\ modules=Compila\u00e7\u00e3o incremental - apenas construir m\u00f3dulos alterados
+# Jenkins needs to know where your Maven2 is installed.
+Maven\ Version.error.1=Jenkins precisa saber onde est\u00e1 a instala\u00e7\u00e3o do Maven
+Goals\ and\ options=Metas e op\u00e7\u00f5es
+Build\ whenever\ a\ SNAPSHOT\ dependency\ is\ built=Construir um SNAPSHOT sempre que executar uma constru\u00e7\u00e3o
+Alternate\ settings\ file=Arquivo de configura\u00e7\u00e3o alternativo
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/configure-entries_ru.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/configure-entries_ru.properties
new file mode 100644
index 0000000..4bd4df6
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/configure-entries_ru.properties
@@ -0,0 +1,28 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Mike Salnikov
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Build=\u0421\u0431\u043e\u0440\u043a\u0430
+Maven\ Version=\u0412\u0435\u0440\u0441\u0438\u044f Maven
+Root\ POM=\u041a\u043e\u0440\u043d\u0435\u0432\u043e\u0439 POM
+Goals=\u0426\u0435\u043b\u0438
+Build\ modules\ in\ parallel=\u0421\u043e\u0431\u0438\u0440\u0430\u0442\u044c \u043c\u043e\u0434\u0443\u043b\u0438 \u043f\u0430\u0440\u0430\u043b\u043b\u0435\u043b\u044c\u043d\u043e
+Build\ Settings=\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u0441\u0431\u043e\u0440\u043a\u0438
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/configure-entries_tr.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/configure-entries_tr.properties
new file mode 100644
index 0000000..18c4003
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/configure-entries_tr.properties
@@ -0,0 +1,30 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Oguz Dag
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Build=Yap\u0131land\u0131rma
+Maven\ Version=Maven\ Versiyonu
+Root\ POM=K\u00f6k POM
+Goals=Hedefler
+Build\ modules\ in\ parallel=Mod\u00fclleri\ paralel\ yap\u0131land\u0131r
+Build\ Settings=Yap\u0131land\u0131rma\ Ayarlar\u0131
+Goals\ and\ options=Hedefler ve se\u00e7enekler
+Use\ private\ maven\ repository=\u00d6zel maven repository''yi kullan
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/deleteAllDisabledModules.jelly b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/deleteAllDisabledModules.jelly
new file mode 100644
index 0000000..93dc199
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/deleteAllDisabledModules.jelly
@@ -0,0 +1,38 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/deleteAllDisabledModules_da.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/deleteAllDisabledModules_da.properties
new file mode 100644
index 0000000..33d96c2
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/deleteAllDisabledModules_da.properties
@@ -0,0 +1,24 @@
+# The MIT License
+#
+# Copyright (c) 2004-2010, Sun Microsystems, Inc. Kohsuke Kawaguchi. Knud Poulsen.
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Yes=Ja
+Are\ you\ sure\ about\ deleting\ all\ the\ disabled\ modules?=Er du sikker p\u00e5 at du vil slette alle moduler der er sl\u00e5et fra?
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/deleteAllDisabledModules_de.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/deleteAllDisabledModules_de.properties
new file mode 100644
index 0000000..db21dc4
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/deleteAllDisabledModules_de.properties
@@ -0,0 +1,24 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Simon Wiest
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Are\ you\ sure\ about\ deleting\ all\ the\ disabled\ modules?=Sollen die deaktivierten Module wirklich gelöscht werden?
+Yes=Ja
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/deleteAllDisabledModules_es.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/deleteAllDisabledModules_es.properties
new file mode 100644
index 0000000..943f5a6
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/deleteAllDisabledModules_es.properties
@@ -0,0 +1,25 @@
+# The MIT License
+#
+# Copyright (c) 2004-2010, Sun Microsystems, Inc.
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Are\ you\ sure\ about\ deleting\ all\ the\ disabled\ modules?=¿Estás seguro de querer borrar todos los módulos que fueron desactivados?
+Yes=Sí
+
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/deleteAllDisabledModules_fr.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/deleteAllDisabledModules_fr.properties
new file mode 100644
index 0000000..47ab0c5
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/deleteAllDisabledModules_fr.properties
@@ -0,0 +1,24 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Eric Lefevre-Ardant
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Are\ you\ sure\ about\ deleting\ all\ the\ disabled\ modules?=\u00CAtes-vous s\u00FBr(e) de vouloir supprimer tous les modules d\u00E9sactiv\u00E9s ?
+Yes=Oui
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/deleteAllDisabledModules_ja.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/deleteAllDisabledModules_ja.properties
new file mode 100644
index 0000000..ea7b3df
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/deleteAllDisabledModules_ja.properties
@@ -0,0 +1,24 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Are\ you\ sure\ about\ deleting\ all\ the\ disabled\ modules?=\u672c\u5f53\u306b\u7121\u52b9\u306a\u30e2\u30b8\u30e5\u30fc\u30eb\u3092\u5168\u3066\u524a\u9664\u3057\u307e\u3059\u304b\uff1f
+Yes=\u306f\u3044
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/deleteAllDisabledModules_nl.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/deleteAllDisabledModules_nl.properties
new file mode 100644
index 0000000..810a245
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/deleteAllDisabledModules_nl.properties
@@ -0,0 +1,24 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, id:sorokh
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Are\ you\ sure\ about\ deleting\ all\ the\ disabled\ modules?=Bent u zeker? U staat op het punt alle desactiveerde modules te verwijderen!
+Yes=Ja
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/deleteAllDisabledModules_pt_BR.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/deleteAllDisabledModules_pt_BR.properties
new file mode 100644
index 0000000..6ef20e5
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/deleteAllDisabledModules_pt_BR.properties
@@ -0,0 +1,24 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Reginaldo L. Russinholi, Cleiber Silva
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Are\ you\ sure\ about\ deleting\ all\ the\ disabled\ modules?=Tem certeza que deseja excluir todos os m\u00f3dulos desabilitados?
+Yes=Sim
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/deleteAllDisabledModules_ru.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/deleteAllDisabledModules_ru.properties
new file mode 100644
index 0000000..84191d2
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/deleteAllDisabledModules_ru.properties
@@ -0,0 +1,24 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Mike Salnikov
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Are\ you\ sure\ about\ deleting\ all\ the\ disabled\ modules?=\u0412\u044b \u0443\u0432\u0435\u0440\u0435\u043d\u044b, \u0447\u0442\u043e \u0445\u043e\u0442\u0438\u0442\u0435 \u0443\u0434\u0430\u043b\u0438\u0442\u044c \u0432\u0441\u0435 \u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0435 \u043c\u043e\u0434\u0443\u043b\u0438?
+Yes=\u0414\u0430
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/deleteAllDisabledModules_sv_SE.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/deleteAllDisabledModules_sv_SE.properties
new file mode 100644
index 0000000..08d82c2
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/deleteAllDisabledModules_sv_SE.properties
@@ -0,0 +1,24 @@
+# The MIT License
+#
+# Copyright (c) 2004-2010, Sun Microsystems, Inc.
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Are\ you\ sure\ about\ deleting\ all\ the\ disabled\ modules?=\u00C4r du s\u00E4ker p\u00E5 att ta bort alla inaktiverade moduler?
+Yes=Ja
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/deleteAllDisabledModules_tr.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/deleteAllDisabledModules_tr.properties
new file mode 100644
index 0000000..05de929
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/deleteAllDisabledModules_tr.properties
@@ -0,0 +1,24 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Oguz Dag
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Are\ you\ sure\ about\ deleting\ all\ the\ disabled\ modules?=T\u00fcm\ devre\ d\u0131\u015f\u0131\ b\u0131rak\u0131lm\u0131\u015f\ mod\u00fclleri\ silmek\ istedi\u011finize\ emin\ misiniz?
+Yes=Evet
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/disabled.jelly b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/disabled.jelly
new file mode 100644
index 0000000..7130300
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/disabled.jelly
@@ -0,0 +1,49 @@
+
+
+
+
+
+
+
+
${%title(it.name)}
+
+ ${%description}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/disabled.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/disabled.properties
new file mode 100644
index 0000000..29b2765
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/disabled.properties
@@ -0,0 +1,26 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+title=Project {0}
+description=\
+ These modules are no longer a part of the project, but left for archival purpose.\
+ If you''d like to delete them permanently, choose "delete all disabled modules" from left.
\ No newline at end of file
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/disabled_da.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/disabled_da.properties
new file mode 100644
index 0000000..fe11571
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/disabled_da.properties
@@ -0,0 +1,27 @@
+# The MIT License
+#
+# Copyright (c) 2004-2010, Sun Microsystems, Inc. Kohsuke Kawaguchi. Knud Poulsen.
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+title=Projekt {0}
+Disabled=Sl\u00e5et Fra
+Modules=Moduler
+description=Disse moduler er ikke l\u00e6ngere en del af projektet, men er bibeholdt for at arkivere dem. \
+Hvis du gerne vil have dem slettet permanent, v\u00e6lg da "Slet alle moduler der er sl\u00e5et fra" fra menuen til venstre.
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/disabled_de.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/disabled_de.properties
new file mode 100644
index 0000000..ecb5959
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/disabled_de.properties
@@ -0,0 +1,28 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Simon Wiest
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+title=Projekt {0}
+description=\
+ Diese Module sind nicht länger Teil des Projekts, werden aber zur Archivierungszwecken aufbewahrt. \
+ Wenn Sie diese Module endgültig löschen möchten, wählen Sie links die Funktion "Alle deaktivierten Module löschen".
+Modules=Module
+Disabled=Deaktiviert
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/disabled_es.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/disabled_es.properties
new file mode 100644
index 0000000..90d7de2
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/disabled_es.properties
@@ -0,0 +1,30 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+title=Proyecto {0}
+description=\
+ Estos módulos no forman parte del proyecto, pero se utilizan para poder ser archivardos. \
+ Si prefieres que se borren permanentemente, elije "borrar todos los módulos inactivos" del panel izquierdo.
+
+Disabled=Desactivado
+Modules=Módulos
+
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/disabled_fr.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/disabled_fr.properties
new file mode 100644
index 0000000..59785f3
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/disabled_fr.properties
@@ -0,0 +1,28 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Eric Lefevre-Ardant
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+title=Projet {0}
+description=\
+ Ces modules ne font plus partie du projet; ils sont conservés pour archivage.\
+ Si vous souhaitez les supprimer de façon permanente, sélectionnez "supprimer tous les modules désactivés" sur la gauche.
+Modules=Modules
+Disabled=Désactivé
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/disabled_ja.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/disabled_ja.properties
new file mode 100644
index 0000000..1f2894a
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/disabled_ja.properties
@@ -0,0 +1,28 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+title=\u30d7\u30ed\u30b8\u30a7\u30af\u30c8 {0}
+description=\
+ \u3053\u308c\u3089\u306e\u30e2\u30b8\u30e5\u30fc\u30eb\u306f\u73fe\u5728\u3067\u306f\u30d3\u30eb\u30c9\u306e\u4e00\u90e8\u3067\u306f\u3042\u308a\u307e\u305b\u3093\u304c\u3001\u904e\u53bb\u30ed\u30b0\u3068\u3057\u3066\u53c2\u7167\u76ee\u7684\u3067\u6b8b\u3055\u308c\u3066\u3044\u307e\u3059\u3002\
+ \u3053\u308c\u3089\u3092\u5b8c\u5168\u306b\u524a\u9664\u3057\u305f\u3044\u5834\u5408\u306f\u5de6\u30e1\u30cb\u30e5\u30fc\u304b\u3089\u300c\u7121\u52b9\u306a\u30e2\u30b8\u30e5\u30fc\u30eb\u3092\u5168\u3066\u524a\u9664\u300d\u3092\u9078\u3093\u3067\u304f\u3060\u3055\u3044
+Modules=\u30e2\u30b8\u30e5\u30fc\u30eb
+Disabled=\u7121\u52b9\u30e2\u30b8\u30e5\u30fc\u30eb
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/disabled_nl.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/disabled_nl.properties
new file mode 100644
index 0000000..6bd692b
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/disabled_nl.properties
@@ -0,0 +1,29 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, id:sorokh
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+title=Project {0}
+description=\
+ Deze modules maken niet langer deel uit van het project, ze zijn hier enkel aanwezig \
+ voor historische redenen. Indien je wenst kun je deze permanent verwijderen door \
+ links op "Verwijder alle gedesactiveerde modules" te klikken.
+Modules=Module
+Disabled=Gedesactiveerd
\ No newline at end of file
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/disabled_pt_BR.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/disabled_pt_BR.properties
new file mode 100644
index 0000000..e5a28f4
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/disabled_pt_BR.properties
@@ -0,0 +1,28 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Reginaldo L. Russinholi, Cleiber Silva
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+title=Projeto {0}
+description=\
+ Estes m\u00f3dulos n\u00e3o fazem mais parte do projeto, mas deixados para prop\u00f3sito de arquivamento.\
+ Se voc\u00ea quiser exclu\u00ed-los permanentemente, escolha a op\u00e7\u00e3o "excluir todos os m\u00f3dulos desabilitados" a esquerda.
+Modules=M\u00f3dulos
+Disabled=Desabilitado
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/disabled_ru.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/disabled_ru.properties
new file mode 100644
index 0000000..a87e6e5
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/disabled_ru.properties
@@ -0,0 +1,28 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Mike Salnikov
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+title=\u041f\u0440\u043e\u0435\u043a\u0442 {0}
+description=\
+ \u042d\u0442\u0438 \u043c\u043e\u0434\u0443\u043b\u0438 \u0431\u043e\u043b\u0435\u0435 \u043d\u0435 \u044f\u0432\u043b\u044f\u044e\u0442\u0441\u044f \u0447\u0430\u0441\u0442\u044c\u044e \u043f\u0440\u043e\u0435\u043a\u0442\u0430, \u043d\u043e \u043e\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u044b \u0434\u043b\u044f \u0446\u0435\u043b\u0438 \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f. \
+ \u0415\u0441\u043b\u0438 \u0432\u044b \u0445\u043e\u0442\u0438\u0442\u0435 \u0443\u0434\u0430\u043b\u0438\u0442\u044c \u0438\u0445 \u043f\u043e\u043b\u043d\u043e\u0441\u0442\u044c\u044e, \u0432\u044b\u0431\u0435\u0440\u0438\u0442\u0435 "\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0432\u0441\u0435 \u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0435 \u043c\u043e\u0434\u0443\u043b\u0438" \u0441\u043b\u0435\u0432\u0430.
+Modules=\u041c\u043e\u0434\u0443\u043b\u0438
+Disabled=\u0411\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u043d
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/disabled_tr.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/disabled_tr.properties
new file mode 100644
index 0000000..85e9f7d
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/disabled_tr.properties
@@ -0,0 +1,28 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Oguz Dag
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+title=Proje {0}
+description=\
+ Bu mod\u00fcller art\u0131k projenin bir par\u00e7as\u0131 olmamalar\u0131na ra\u011fmen, ar\u015fivsel ama\u00e7la b\u0131rak\u0131lm\u0131\u015ft\u0131r.\
+ Kal\u0131c\u0131 olarak silmek isterseniz, sol taraftan "T\u00fcm devre d\u0131\u015f\u0131 b\u0131rak\u0131lm\u0131\u015f mod\u00fclleri sil" k\u0131sm\u0131n\u0131 se\u00e7iniz.
+Modules=Mod\u00fcller
+Disabled=Devre d\u0131\u015f\u0131 b\u0131rak\u0131lm\u0131\u015f
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/doCheckFileInWorkspace.stapler b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/doCheckFileInWorkspace.stapler
new file mode 100644
index 0000000..2890eea
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/doCheckFileInWorkspace.stapler
@@ -0,0 +1 @@
+value
\ No newline at end of file
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/doCheckFileRelative.stapler b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/doCheckFileRelative.stapler
new file mode 100644
index 0000000..2890eea
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/doCheckFileRelative.stapler
@@ -0,0 +1 @@
+value
\ No newline at end of file
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/global.jelly b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/global.jelly
new file mode 100644
index 0000000..445038d
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/global.jelly
@@ -0,0 +1,34 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/global_da.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/global_da.properties
new file mode 100644
index 0000000..9b12b90
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/global_da.properties
@@ -0,0 +1,24 @@
+# The MIT License
+#
+# Copyright (c) 2004-2010, Sun Microsystems, Inc. Kohsuke Kawaguchi. Knud Poulsen.
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Global\ MAVEN_OPTS=Globale MAVEN_OPTS
+Maven\ Project\ Configuration=Maven Projekt Konfiguration
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/global_de.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/global_de.properties
new file mode 100644
index 0000000..e2947cb
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/global_de.properties
@@ -0,0 +1,24 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009 , Sun Microsystems, Inc., Seiji Scribe, Simon Wiest
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Maven\ Project\ Configuration=Maven Projekt-Konfiguration
+Global\ MAVEN_OPTS=Globale MAVEN_OPTS
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/global_es.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/global_es.properties
new file mode 100644
index 0000000..c3f7c80
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/global_es.properties
@@ -0,0 +1,24 @@
+# The MIT License
+#
+# Copyright (c) 2004-2010, Sun Microsystems, Inc.
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Maven\ Project\ Configuration=Configuración de un proyecto maven
+Global\ MAVEN_OPTS=Valor para la variable global MAVEN_OPTS
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/global_fr.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/global_fr.properties
new file mode 100644
index 0000000..6d9f984
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/global_fr.properties
@@ -0,0 +1,24 @@
+# The MIT License
+#
+# Copyright (c) 2004-2010, Sun Microsystems, Inc.
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Global\ MAVEN_OPTS=MAVEN_OPTS global
+Maven\ Project\ Configuration=Configuration des projets Maven
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/global_ja.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/global_ja.properties
new file mode 100644
index 0000000..55778c9
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/global_ja.properties
@@ -0,0 +1,24 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009 , Sun Microsystems, Inc., Seiji Sogabe
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Maven\ Project\ Configuration=Maven\u30D7\u30ED\u30B8\u30A7\u30AF\u30C8
+Global\ MAVEN_OPTS=Global MAVEN_OPTS
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/global_nl.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/global_nl.properties
new file mode 100644
index 0000000..fe5807c
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/global_nl.properties
@@ -0,0 +1,24 @@
+# The MIT License
+#
+# Copyright (c) 2004-2010, Sun Microsystems, Inc.
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Global\ MAVEN_OPTS=Globale MAVEN_OPTS
+Maven\ Project\ Configuration=Maven projectconfiguratie
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/global_pt_BR.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/global_pt_BR.properties
new file mode 100644
index 0000000..22076bd
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/global_pt_BR.properties
@@ -0,0 +1,24 @@
+# The MIT License
+#
+# Copyright (c) 2004-2010, Sun Microsystems, Inc., Cleiber Silva
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Global\ MAVEN_OPTS= Global MAVEN_OPTS
+Maven\ Project\ Configuration= Configura\u00e7\u00e3o do Projeto Maven
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/global_ru.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/global_ru.properties
new file mode 100644
index 0000000..247def0
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/global_ru.properties
@@ -0,0 +1,24 @@
+# The MIT License
+#
+# Copyright (c) 2004-2010, Sun Microsystems, Inc.
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Global\ MAVEN_OPTS=\u0413\u043B\u043E\u0431\u0430\u043B\u044C\u043D\u044B\u0435 MAVEN_OPTS
+Maven\ Project\ Configuration=\u041A\u043E\u043D\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u044F \u043F\u0440\u043E\u0435\u043A\u0442\u0430
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/global_zh_CN.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/global_zh_CN.properties
new file mode 100644
index 0000000..217afb8
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/global_zh_CN.properties
@@ -0,0 +1,24 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009 , Sun Microsystems, Inc., Seiji Scribe, Simon Wiest
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Maven\ Project\ Configuration=Maven\u9879\u76ee\u914d\u7f6e
+Global\ MAVEN_OPTS=\u5168\u5c40MAVEN_OPTS
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/help-goals.jelly b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/help-goals.jelly
new file mode 100644
index 0000000..53398c4
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/help-goals.jelly
@@ -0,0 +1,41 @@
+
+
+
+
+
+ Specify a whitespace-separated list of maven goals or phases to be executed,
+ such as "install javadoc:javadoc". If left unspecified,
+ the default goal
+ specified in the POM will be used, and if even that is unspecified, "install"
+ will be run.
+
+
+ This field can also include any other Maven options. Jenkins also makes
+ these variables
+ available as system properties to builds.
+
+
+
+
\ No newline at end of file
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/index.jelly b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/index.jelly
new file mode 100644
index 0000000..0db3522
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/index.jelly
@@ -0,0 +1,97 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/index.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/index.properties
new file mode 100644
index 0000000..8dcddad
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/index.properties
@@ -0,0 +1,26 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, id:cactusman
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+text=\
+ Please perform a build so that Jenkins can \
+ parse the list of modules from POM.
+Overview={0} Overview
\ No newline at end of file
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/index_da.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/index_da.properties
new file mode 100644
index 0000000..7461f82
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/index_da.properties
@@ -0,0 +1,28 @@
+# The MIT License
+#
+# Copyright (c) 2004-2010, Sun Microsystems, Inc. Kohsuke Kawaguchi. Knud Poulsen.
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Latest\ Test\ Result=Seneste testmodul
+Enable=Sl\u00e5 til
+Workspace=Arbejdsomr\u00e5de
+Last\ Successful\ Artifacts=Seneste succesfulde artifakter
+This\ project\ is\ currently\ disabled=Dette projekt er for nuv\u00e6rende sl\u00e5et fra
+Recent\ Changes=Nyelige \u00e6ndringer
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/index_de.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/index_de.properties
new file mode 100644
index 0000000..74a4079
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/index_de.properties
@@ -0,0 +1,29 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Simon Wiest
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Workspace=Arbeitsbereich
+Recent\ Changes=Letzte Änderungen
+Latest\ Test\ Result=Letztes Testergebnis
+Last\ Successful\ Artifacts=Letzte erfolgreiche Artefakte
+Enable=Aktivieren
+This\ project\ is\ currently\ disabled=Dieses Projekt ist momentan deaktiviert.
+Disable\ Project=Projekt deaktivieren
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/index_es.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/index_es.properties
new file mode 100644
index 0000000..15adcbe
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/index_es.properties
@@ -0,0 +1,29 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, id:cactusman
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Recent\ Changes=Cambios recientes
+Workspace=Espacio de trabajo
+Latest\ Test\ Result=Últimos resultados de tests
+Last\ Successful\ Artifacts=Último artefacto correcto
+Enable=Activar
+This\ project\ is\ currently\ disabled=Este proyecto está desactivado
+Disable\ Project=Desactivar este proyecto
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/index_fr.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/index_fr.properties
new file mode 100644
index 0000000..2bd03a5
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/index_fr.properties
@@ -0,0 +1,26 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Eric Lefevre-Ardant
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Workspace=Espace de travail
+Recent\ Changes=Changements récents
+Latest\ Test\ Result=Derniers résultats des tests
+Last\ Successful\ Artifacts=Derniers artefacts construits avec succès
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/index_hu.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/index_hu.properties
new file mode 100644
index 0000000..eb01b50
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/index_hu.properties
@@ -0,0 +1,23 @@
+# The MIT License
+#
+# Copyright (c) 2004-2010, Sun Microsystems, Inc.
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Workspace=Munkahely
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/index_it.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/index_it.properties
new file mode 100644
index 0000000..15db7e6
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/index_it.properties
@@ -0,0 +1,26 @@
+# The MIT License
+#
+# Copyright (c) 2004-2010, Sun Microsystems, Inc.
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Last\ Successful\ Artifacts=Ultimi artifact con successo
+Latest\ Test\ Result=Ultimo risultato tes
+Recent\ Changes=Modifiche recenti
+Workspace=Workspace
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/index_ja.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/index_ja.properties
new file mode 100644
index 0000000..43605f7
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/index_ja.properties
@@ -0,0 +1,30 @@
+# The MIT License
+#
+# Copyright (c) 2004-2010, Sun Microsystems, Inc., Kohsuke Kawaguchi, Seiji Sogabe, id:cactusman
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Workspace=\u30ef\u30fc\u30af\u30b9\u30da\u30fc\u30b9
+Recent\ Changes=\u6700\u65b0\u306e\u5909\u66f4
+Latest\ Test\ Result=\u6700\u65b0\u306e\u30c6\u30b9\u30c8\u7d50\u679c
+Last\ Successful\ Artifacts=\u6700\u65b0\u6210\u529f\u30d3\u30eb\u30c9\u306e\u6210\u679c\u7269
+This\ project\ is\ currently\ disabled=\u73fe\u5728\u3001\u3053\u306e\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u306f\u7121\u52b9\u3067\u3059\u3002
+Enable=\u6709\u52b9\u5316
+Disable\ Project=\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u306e\u7121\u52b9\u5316
+
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/index_nb_NO.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/index_nb_NO.properties
new file mode 100644
index 0000000..218798c
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/index_nb_NO.properties
@@ -0,0 +1,24 @@
+# The MIT License
+#
+# Copyright (c) 2004-2010, Sun Microsystems, Inc.
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Last\ Successful\ Artifacts=Siste feilfrie bygg
+Recent\ Changes=Siste Forandinger
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/index_nl.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/index_nl.properties
new file mode 100644
index 0000000..0538e47
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/index_nl.properties
@@ -0,0 +1,31 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, id:sorokh
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Modules=Modules
+A\ build\ is\ in\ progress\ to\ parse\ the\ list\ of\ modules\ from\ POM.=Een bouwpoging is bezig met het interpreteren van de lijst van modules gedefinieerd in de POM.
+text= Gelieve een nieuwe bouwpoging te starten. Op deze \
+ manier kan Jenkins uw modulelijst opbouwen op basis van uw POM.
+Overview={0} Overzicht
+Workspace=Werkplaats
+Recent\ Changes=Recente veranderingen
+Last\ Successful\ Artifacts=Laatste succesvolle artefacten
+Latest\ Test\ Result=Laatste testresultaat
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/index_pt_BR.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/index_pt_BR.properties
new file mode 100644
index 0000000..bf0b551
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/index_pt_BR.properties
@@ -0,0 +1,26 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Reginaldo L. Russinholi, Cleiber Silva
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Workspace=
+Recent\ Changes=Mudan\u00e7as Recentes
+Latest\ Test\ Result=\u00daltimo Resultado de Teste
+Last\ Successful\ Artifacts=\u00daltimos Artefatos que obtiveram Sucesso
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/index_ru.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/index_ru.properties
new file mode 100644
index 0000000..2b0a894
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/index_ru.properties
@@ -0,0 +1,26 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Mike Salnikov
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Workspace=\u0421\u0431\u043e\u0440\u043e\u0447\u043d\u0430\u044f \u0434\u0438\u0440\u0435\u043a\u0442\u043e\u0440\u0438\u044f
+Recent\ Changes=\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0435 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f
+Last\ Successful\ Artifacts=\u0410\u0440\u0442\u0435\u0444\u0430\u043A\u0442\u044B \u043F\u043E\u0441\u043B\u0435\u0434\u043D\u0435\u0439 \u0443\u0441\u043F\u0435\u0448\u043D\u043E\u0439 \u0441\u0431\u043E\u0440\u043A\u0438
+Latest\ Test\ Result=\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0435 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u044b \u0442\u0435\u0441\u0442\u043e\u0432
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/index_sv_SE.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/index_sv_SE.properties
new file mode 100644
index 0000000..01f70ac
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/index_sv_SE.properties
@@ -0,0 +1,25 @@
+# The MIT License
+#
+# Copyright (c) 2004-2010, Sun Microsystems, Inc.
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Latest\ Test\ Result=Senaste testresultat
+Recent\ Changes=Senaste F\u00F6r\u00E4ndringar
+Workspace=Arbetsyta
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/index_tr.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/index_tr.properties
new file mode 100644
index 0000000..94ab382
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/index_tr.properties
@@ -0,0 +1,32 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Oguz Dag
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+text=\
+ L\u00fctfen Jenkins''\u0131n POM i\u00e7erisindeki mod\u00fcllerin listesini ayr\u0131\u015ft\u0131rabilmesi i\u00e7in \
+ bir yap\u0131land\u0131rma i\u015flemi yap\u0131n\u0131z.
+Overview={0} Genel\ Bak\u0131\u015f
+Modules=Mod\u00fcller
+A\ build\ is\ in\ progress\ to\ parse\ the\ list\ of\ modules\ from\ POM.=POM i\u00e7erisindeki mod\u00fclleri ayr\u0131\u015ft\u0131rmak i\u00e7in bir yap\u0131land\u0131rma \u00e7al\u0131\u015f\u0131yor.
+Workspace=\u00e7al\u0131\u015fma Alan\u0131
+Recent\ Changes=Son De\u011fi\u015fiklikler
+Latest\ Test\ Result=En son test sonu\u00e7lar\u0131
+Last\ Successful\ Artifacts=Son Ba\u015far\u0131l\u0131 Artefaktlar
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/modules.jelly b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/modules.jelly
new file mode 100644
index 0000000..71a15b7
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/modules.jelly
@@ -0,0 +1,59 @@
+
+
+
+
+
+
+
${%Modules}
+
+
+
+
+
+ ${%A build is in progress to parse the list of modules from POM.}
+
+
+
+ ${%text}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/modules.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/modules.properties
new file mode 100644
index 0000000..fa3af3c
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/modules.properties
@@ -0,0 +1,26 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+text=\
+ Please perform a build so that Jenkins can \
+ parse the list of modules from POM.
+Overview={0} Overview
\ No newline at end of file
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/modules_da.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/modules_da.properties
new file mode 100644
index 0000000..f79e0e9
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/modules_da.properties
@@ -0,0 +1,26 @@
+# The MIT License
+#
+# Copyright (c) 2004-2010, Sun Microsystems, Inc. Kohsuke Kawaguchi. Knud Poulsen.
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+A\ build\ is\ in\ progress\ to\ parse\ the\ list\ of\ modules\ from\ POM.=Et byg er i gang for at parse listen af moduler fra POM''en.
+Disabled=Sl\u00e5et Fra
+Modules=Moduler
+text=V\u00e6r venlig at k\u00f8re et byg, s\u00e5 Jenkins kan parse listen af moduler fra POM''en.
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/modules_de.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/modules_de.properties
new file mode 100644
index 0000000..24e3dc8
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/modules_de.properties
@@ -0,0 +1,28 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Simon Wiest
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Modules=Module
+A\ build\ is\ in\ progress\ to\ parse\ the\ list\ of\ modules\ from\ POM.=Die Liste der Module wird momentan aus der POM-Datei ermittelt.
+text=\
+ Bitte führen Sie einen Build aus , damit Jenkins \
+ die Liste der Module aus der POM-Datei ermitteln kann.
+Disabled=Deaktiviert
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/modules_es.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/modules_es.properties
new file mode 100644
index 0000000..633bb96
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/modules_es.properties
@@ -0,0 +1,27 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+text=\
+ Por favor lanza una ejecución de manera que Jenkins pueda reconocer la lista de módulos presentes en el fichero POM
+Disabled=Desactivado
+Modules=Módulos
+A\ build\ is\ in\ progress\ to\ parse\ the\ list\ of\ modules\ from\ POM.=Se está ejecutando el proyecto para poder analizar el fichero POM
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/modules_fr.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/modules_fr.properties
new file mode 100644
index 0000000..c42aad0
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/modules_fr.properties
@@ -0,0 +1,28 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Eric Lefevre-Ardant
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Modules=
+A\ build\ is\ in\ progress\ to\ parse\ the\ list\ of\ modules\ from\ POM.=Un build est en cours de parcours de la liste des modules fournis par le POM.
+text=\
+ Merci de lancer un build afin que Jenkins \
+ puisse parcourir la liste des modules \u00e0 partir du POM.
+Disabled=Désactivés
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/modules_ja.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/modules_ja.properties
new file mode 100644
index 0000000..2bc29dd
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/modules_ja.properties
@@ -0,0 +1,29 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, id:cactusman
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Modules=\u30e2\u30b8\u30e5\u30fc\u30eb
+Disabled=\u7121\u52b9\u30e2\u30b8\u30e5\u30fc\u30eb
+A\ build\ is\ in\ progress\ to\ parse\ the\ list\ of\ modules\ from\ POM.=\
+ \u30d3\u30eb\u30c9\u306fPOM\u304b\u3089\u30e2\u30b8\u30e5\u30fc\u30eb\u306e\u30ea\u30b9\u30c8\u3092\u5206\u6790\u3059\u308b\u305f\u3081\u3001\u9032\u884c\u4e2d\u3067\u3059\u3002
+
+text=Jenkins\u304cPOM\u304b\u3089\u30e2\u30b8\u30e5\u30fc\u30eb\u306e\u30ea\u30b9\u30c8\u3092\u5206\u6790\u3059\u308b\u305f\u3081\u306b\u30d3\u30eb\u30c9\u3092\u5b9f\u884c\u3057\u3066\u304f\u3060\u3055\u3044\u3002
+
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/modules_nl.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/modules_nl.properties
new file mode 100644
index 0000000..5034e56
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/modules_nl.properties
@@ -0,0 +1,26 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, id:sorokh
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+text=\
+ Gelieve een bouwpoging te starten zodat Jenkins \
+ de lijst van modules via de POM kan opbouwen.
+Overview={0} Overzicht
\ No newline at end of file
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/modules_pt_BR.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/modules_pt_BR.properties
new file mode 100644
index 0000000..5ff6ce3
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/modules_pt_BR.properties
@@ -0,0 +1,27 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Reginaldo L. Russinholi, Cleiber Silva
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Modules=M\u00F3dulos
+A\ build\ is\ in\ progress\ to\ parse\ the\ list\ of\ modules\ from\ POM.=Uma constru\u00e7\u00e3o est\u00e1 em progresso para analisar a lista de m\u00f3dulos do POM.
+text= Favor execute uma constru\u00e7\u00e3o para que o Jenkins\
+ possa analisar os m\u00f3dulos do POM.
+Disabled=Desabilitado
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/modules_ru.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/modules_ru.properties
new file mode 100644
index 0000000..63b9a51
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/modules_ru.properties
@@ -0,0 +1,29 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Mike Salnikov
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+text=\
+ \u041f\u043e\u0436\u0430\u043b\u0443\u0439\u0441\u0442\u0430, \u0437\u0430\u043f\u0443\u0441\u0442\u0438\u0442\u0435 \u0441\u0431\u043e\u0440\u043a\u0443 \u0447\u0442\u043e\u0431\u044b Jenkins \u0441\u043c\u043e\u0433\
+ \u0432\u044b\u0431\u0440\u0430\u0442\u044c \u0441\u043f\u0438\u0441\u043e\u043a \u043c\u043e\u0434\u0443\u043b\u0435\u0439 \u0438\u0437 POM.
+
+Modules=\u041c\u043e\u0434\u0443\u043b\u0438
+A\ build\ is\ in\ progress\ to\ parse\ the\ list\ of\ modules\ from\ POM.=\u0421\u0431\u043e\u0440\u043a\u0430 \u0432 \u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0435 \u0434\u043b\u044f \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u044f \u0441\u043f\u0438\u0441\u043a\u0430 \u043c\u043e\u0434\u0443\u043b\u0435\u0439 \u0438\u0437 POM.
+Disabled=\u0412\u044b\u043a\u043b\u044e\u0447\u0435\u043d
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/modules_sv_SE.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/modules_sv_SE.properties
new file mode 100644
index 0000000..b953575
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/modules_sv_SE.properties
@@ -0,0 +1,24 @@
+# The MIT License
+#
+# Copyright (c) 2004-2010, Sun Microsystems, Inc.
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Disabled=Inaktiverad
+Modules=Moduler
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/modules_tr.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/modules_tr.properties
new file mode 100644
index 0000000..04b0292
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/modules_tr.properties
@@ -0,0 +1,29 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Oguz Dag
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+text=\
+ L\u00fctfen Jenkins''\u0131n POM i\u00e7erisindeki mod\u00fcllerin listesini ayr\u0131\u015ft\u0131rabilmesi i\u00e7in \
+ bir yap\u0131land\u0131rma i\u015flemi yap\u0131n\u0131z.
+Overview={0} Genel\ Bak\u0131\u015f
+Modules=Mod\u00fcller
+A\ build\ is\ in\ progress\ to\ parse\ the\ list\ of\ modules\ from\ POM.=POM i\u00e7erisindeki mod\u00fclleri ayr\u0131\u015ft\u0131rmak i\u00e7in bir yap\u0131land\u0131rma \u00e7al\u0131\u015f\u0131yor.
+Disabled=Devre d\u0131\u015f\u0131 b\u0131rak\u0131lm\u0131\u015f
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/newJobDetail.jelly b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/newJobDetail.jelly
new file mode 100644
index 0000000..4891551
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/newJobDetail.jelly
@@ -0,0 +1,27 @@
+
+
+
+ ${%body}
+
\ No newline at end of file
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/newJobDetail.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/newJobDetail.properties
new file mode 100644
index 0000000..e8c67ab
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/newJobDetail.properties
@@ -0,0 +1,25 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, id:cactusman
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+body=\
+ Build a maven2 project. Jenkins takes advantage of your POM files and \
+ drastically reduces the configuration.
\ No newline at end of file
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/newJobDetail_da.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/newJobDetail_da.properties
new file mode 100644
index 0000000..08c6e64
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/newJobDetail_da.properties
@@ -0,0 +1,24 @@
+# The MIT License
+#
+# Copyright (c) 2004-2010, Sun Microsystems, Inc. Kohsuke Kawaguchi. Knud Poulsen.
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+body=Byg et maven2/3 projekt. Jenkins udnytter dine POM filer og reducerer herved \
+dramatisk behovet for konfiguration.
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/newJobDetail_de.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/newJobDetail_de.properties
new file mode 100644
index 0000000..516828f
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/newJobDetail_de.properties
@@ -0,0 +1,25 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Simon Wiest
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+body=\
+ Dieses Profil baut ein Maven 2/3 Projekt. Jenkins wertet dabei Ihre POM Dateien aus und \
+ reduziert damit den Konfigurationsaufwand ganz erheblich.
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/newJobDetail_el.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/newJobDetail_el.properties
new file mode 100644
index 0000000..0f36509
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/newJobDetail_el.properties
@@ -0,0 +1,23 @@
+# The MIT License
+#
+# Copyright (c) 2004-2010, Sun Microsystems, Inc.
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+body=\u0394\u03B7\u03BC\u03B9\u03BF\u03C5\u03C1\u03B3\u03B9\u03B1 maven2/3 project. O Jenkins \u03B1\u03BE\u03B9\u03BF\u03C0\u03BF\u03B9\u03B5\u03AF \u03C4\u03B1 \u03B1\u03C1\u03C7\u03B5\u03AF\u03B1 POM \u03BA\u03B1\u03B9 \u03BC\u03B5\u03B9\u03CE\u03BD\u03B5\u03B9 \u03B4\u03C1\u03B1\u03BC\u03B1\u03C4\u03B9\u03BA\u03AC \u03C4\u03B7\u03BD \u03C0\u03B1\u03C1\u03B1\u03BC\u03B5\u03C4\u03C1\u03BF\u03C0\u03BF\u03B9\u03AE\u03C3\u03B7 \u03C0\u03BF\u03C5 \u03C7\u03C1\u03B5\u03B9\u03AC\u03B6\u03B5\u03C4\u03B1\u03B9
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/newJobDetail_es.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/newJobDetail_es.properties
new file mode 100644
index 0000000..1de1783
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/newJobDetail_es.properties
@@ -0,0 +1,25 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, id:cactusman
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+body=\
+ Ejecuta un proyecto maven2/3. Jenkins es capaz de aprovechar la configuracion presente en los ficheros POM, reduciendo drásticamente la configuración.
+
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/newJobDetail_fr.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/newJobDetail_fr.properties
new file mode 100644
index 0000000..2e94675
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/newJobDetail_fr.properties
@@ -0,0 +1,27 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Eric Lefevre-Ardant
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+# OUTDATED
+body=\
+ Construit un projet avec maven2/3. Jenkins utilise directement vos fichiers POM \
+ et diminue radicalement l''effort de configuration. Cette fonctionnalit\u00e9 est encore en b\u00eata mais elle est \
+ disponible afin d''obtenir vos retours.
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/newJobDetail_it.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/newJobDetail_it.properties
new file mode 100644
index 0000000..c6b1510
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/newJobDetail_it.properties
@@ -0,0 +1,23 @@
+# The MIT License
+#
+# Copyright (c) 2004-2010, Sun Microsystems, Inc.
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+body=Effettua una build di un progetto maven2/3. Jenkins sfrutta i file POM e riduce drasticamente la configurazione.
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/newJobDetail_ja.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/newJobDetail_ja.properties
new file mode 100644
index 0000000..e20a291
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/newJobDetail_ja.properties
@@ -0,0 +1,24 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, id:cactusman
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+body=\
+ Maven2/3\u306e\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u3092\u30d3\u30eb\u30c9\u3057\u307e\u3059\u3002Jenkins\u306fPOM\u30d5\u30a1\u30a4\u30eb\u304b\u3089\u5fc5\u8981\u306a\u60c5\u5831\u3092\u8aad\u307f\u53d6\u308b\u306e\u3067\u3001\u8a2d\u5b9a\u304c\u5fc5\u8981\u306a\u9805\u76ee\u306f\u3054\u304f\u308f\u305a\u304b\u3067\u3059\u3002
\ No newline at end of file
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/newJobDetail_ko.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/newJobDetail_ko.properties
new file mode 100644
index 0000000..c0cebdb
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/newJobDetail_ko.properties
@@ -0,0 +1,23 @@
+# The MIT License
+#
+# Copyright (c) 2004-2010, Sun Microsystems, Inc.
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+body=Maven2/3 \uD504\uB85C\uC81D\uD2B8\uB97C \uBE4C\uB4DC\uD569\uB2C8\uB2E4. Jenkins\uC740 POM \uD30C\uC77C\uC758 \uC774\uC810\uC744 \uAC00\uC9C0\uACE0 \uC788\uACE0 \uAE09\uACA9\uD788 \uC124\uC815\uC744 \uC904\uC785\uB2C8\uB2E4.
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/newJobDetail_nb_NO.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/newJobDetail_nb_NO.properties
new file mode 100644
index 0000000..89cffba
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/newJobDetail_nb_NO.properties
@@ -0,0 +1,23 @@
+# The MIT License
+#
+# Copyright (c) 2004-2010, Sun Microsystems, Inc.
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+body=Bygg et Maven 2/3 prosjekt. Jenkins tar fordel av dine POM (Project Object Model - Prosjekt Objekt Modell) filer og drastisk reduserer behovet for konfigurasjon.
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/newJobDetail_nl.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/newJobDetail_nl.properties
new file mode 100644
index 0000000..05d2601
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/newJobDetail_nl.properties
@@ -0,0 +1,27 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, id:sorokh
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+body=\
+ Bouw een maven2/3 project. Jenkins maakt gebruikt van uw POM bestand wat \
+ uw nood aan configuratie drastisch reduceert. Merk op dat deze functionaliteit \
+ nog steeds in ontwikkeling is, maar al reeds beschikbaar gesteld wordt om \
+ terugkoppeling te krijgen van gebruikers.
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/newJobDetail_pt_BR.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/newJobDetail_pt_BR.properties
new file mode 100644
index 0000000..cd187b6
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/newJobDetail_pt_BR.properties
@@ -0,0 +1,27 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Reginaldo L. Russinholi, Cleiber Silva
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+# OUTDATED
+body=\
+ Construir um projeto maven2/3. Jenkins tira vantagem de seus arquivos POM e \
+ reduz drasticamente a configura\u00e7\u00e3o. Ainda \u00e9 um trabalho em progresso, mas \
+ diposto a aceitar feedback.
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/newJobDetail_ru.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/newJobDetail_ru.properties
new file mode 100644
index 0000000..910812f
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/newJobDetail_ru.properties
@@ -0,0 +1,24 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Mike Salnikov
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+# OUTDATED
+body=\u0421\u043E\u0437\u0434\u0430\u0442\u044C \u043F\u0440\u043E\u0435\u043A\u0442 maven2/3. Jenkins \u0431\u0443\u0434\u0435\u0442 \u0438\u0441\u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u044C \u0438\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0438\u044E \u0438\u0437 \u043F\u0440\u043E\u0435\u043A\u0442\u043D\u044B\u0445 \u0444\u0430\u0439\u043B\u043E\u0432 POM, \u0447\u0442\u043E \u0443\u043C\u0435\u043D\u0448\u0438\u0442 \u043D\u0435\u043E\u0431\u0445\u043E\u0434\u0438\u043C\u043E\u0441\u0442\u044C \u043A\u043E\u043D\u0444\u0438\u0433\u0443\u0440\u0438\u0440\u043E\u0432\u0430\u043D\u0438\u044F.
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/newJobDetail_sv_SE.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/newJobDetail_sv_SE.properties
new file mode 100644
index 0000000..c3e25ca
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/newJobDetail_sv_SE.properties
@@ -0,0 +1,23 @@
+# The MIT License
+#
+# Copyright (c) 2004-2010, Sun Microsystems, Inc.
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+body=Bygg ett maven2/3 projekt. Jenkins utnyttjar dina POM filer och kommer drastiskt minska behovet av konfiguration.
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/newJobDetail_tr.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/newJobDetail_tr.properties
new file mode 100644
index 0000000..c4f818b
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/newJobDetail_tr.properties
@@ -0,0 +1,24 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Oguz Dag
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+# OUTDATED
+body=Maven2/3\ projesi\ yap\u0131land\u0131r.\ Jenkins,\ POM\ dosyalar\u0131n\u0131z\u0131n\ avantajlar\u0131n\u0131\ kullan\u0131r\ ve\ konfig\u00fcrasyonu\ inan\u0131lmaz\ derecede\ azalt\u0131r.\ Hala\ \u00fczerinde\ \u00e7al\u0131\u015fma\ devam\ ediyor,\ dolay\u0131s\u0131yla geri\ bildirimler\ daima faydal\u0131 olacakt\u0131r.
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/newJobDetail_zh_CN.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/newJobDetail_zh_CN.properties
new file mode 100644
index 0000000..7abc177
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/newJobDetail_zh_CN.properties
@@ -0,0 +1,24 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, id:cactusman
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+body=\
+ \u6784\u5efa\u4e00\u4e2amaven2/3\u9879\u76ee.Jenkins\u5229\u7528\u4f60\u7684POM\u6587\u4ef6,\u8fd9\u6837\u53ef\u4ee5\u5927\u5927\u51cf\u8f7b\u6784\u5efa\u914d\u7f6e.
\ No newline at end of file
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/sidepanel2.jelly b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/sidepanel2.jelly
new file mode 100644
index 0000000..e7d1ecd
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSet/sidepanel2.jelly
@@ -0,0 +1,35 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSetBuild$1.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSetBuild$1.class
new file mode 100644
index 0000000..ca4b863
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSetBuild$1.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSetBuild$Builder$FilterImpl.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSetBuild$Builder$FilterImpl.class
new file mode 100644
index 0000000..2ea91c3
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSetBuild$Builder$FilterImpl.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSetBuild$Builder.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSetBuild$Builder.class
new file mode 100644
index 0000000..74628af
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSetBuild$Builder.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSetBuild$MavenExecutionException.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSetBuild$MavenExecutionException.class
new file mode 100644
index 0000000..a7a532f
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSetBuild$MavenExecutionException.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSetBuild$PomParser.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSetBuild$PomParser.class
new file mode 100644
index 0000000..94049df
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSetBuild$PomParser.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSetBuild$RunnerImpl.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSetBuild$RunnerImpl.class
new file mode 100644
index 0000000..2907b32
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSetBuild$RunnerImpl.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSetBuild$SimpleTransferListener.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSetBuild$SimpleTransferListener.class
new file mode 100644
index 0000000..0e9e482
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSetBuild$SimpleTransferListener.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSetBuild.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSetBuild.class
new file mode 100644
index 0000000..b276427
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSetBuild.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSetBuild/main.jelly b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSetBuild/main.jelly
new file mode 100644
index 0000000..ba82bab
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSetBuild/main.jelly
@@ -0,0 +1,69 @@
+
+
+
+
+
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSetBuild/main.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSetBuild/main.properties
new file mode 100644
index 0000000..e641df0
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSetBuild/main.properties
@@ -0,0 +1,23 @@
+# The MIT License
+#
+# Copyright (c) 2004-2010, Sun Microsystems, Inc., Alan Harder
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+noRun=didn''t run
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSetBuild/main_da.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSetBuild/main_da.properties
new file mode 100644
index 0000000..6e18937
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSetBuild/main_da.properties
@@ -0,0 +1,24 @@
+# The MIT License
+#
+# Copyright (c) 2004-2010, Sun Microsystems, Inc. Kohsuke Kawaguchi. Knud Poulsen.
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Module\ Builds=Modulbyg
+noRun=k\u00f8rte ikke
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSetBuild/main_de.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSetBuild/main_de.properties
new file mode 100644
index 0000000..8410563
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSetBuild/main_de.properties
@@ -0,0 +1,23 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Simon Wiest
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Module\ Builds=Modul-Builds
\ No newline at end of file
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSetBuild/main_es.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSetBuild/main_es.properties
new file mode 100644
index 0000000..fc8341f
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSetBuild/main_es.properties
@@ -0,0 +1,25 @@
+# The MIT License
+#
+# Copyright (c) 2004-2010, Sun Microsystems, Inc.
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Module\ Builds=Módulos
+# didn''t run
+noRun=No se ejecutó
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSetBuild/main_fi.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSetBuild/main_fi.properties
new file mode 100644
index 0000000..d9cec29
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSetBuild/main_fi.properties
@@ -0,0 +1,23 @@
+# The MIT License
+#
+# Copyright (c) 2004-2010, Sun Microsystems, Inc.
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Module\ Builds=Moduuli k\u00E4\u00E4nn\u00F6kset
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSetBuild/main_fr.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSetBuild/main_fr.properties
new file mode 100644
index 0000000..72dcf73
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSetBuild/main_fr.properties
@@ -0,0 +1,23 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Eric Lefevre-Ardant
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Module\ Builds=Builds des modules
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSetBuild/main_ja.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSetBuild/main_ja.properties
new file mode 100644
index 0000000..8d37b0a
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSetBuild/main_ja.properties
@@ -0,0 +1,23 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Seiji Sogabe
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Module\ Builds=\u30e2\u30b8\u30e5\u30fc\u30eb\u30d3\u30eb\u30c9
\ No newline at end of file
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSetBuild/main_nb_NO.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSetBuild/main_nb_NO.properties
new file mode 100644
index 0000000..b77438f
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSetBuild/main_nb_NO.properties
@@ -0,0 +1,23 @@
+# The MIT License
+#
+# Copyright (c) 2004-2010, Sun Microsystems, Inc.
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Module\ Builds=Moduler i bygget
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSetBuild/main_pt_BR.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSetBuild/main_pt_BR.properties
new file mode 100644
index 0000000..6c7c78a
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSetBuild/main_pt_BR.properties
@@ -0,0 +1,25 @@
+# The MIT License
+#
+# Copyright (c) 2004-2010, Sun Microsystems, Inc., Cleiber Silva
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Module\ Builds=M\u00f3dulos de contru\u00e7\u00e3o
+# didn''t run
+noRun=N\u00e3o executar
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSetBuild/main_sv_SE.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSetBuild/main_sv_SE.properties
new file mode 100644
index 0000000..abebe50
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenModuleSetBuild/main_sv_SE.properties
@@ -0,0 +1,23 @@
+# The MIT License
+#
+# Copyright (c) 2004-2010, Sun Microsystems, Inc.
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Module\ Builds=Modulbyggen
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction.class
new file mode 100644
index 0000000..8f0c620
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/_script.jelly b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/_script.jelly
new file mode 100644
index 0000000..9f20a7b
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/_script.jelly
@@ -0,0 +1,32 @@
+
+
+
+
+
+
println System.getenv("PATH")
+
+
\ No newline at end of file
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/envVars.jelly b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/envVars.jelly
new file mode 100644
index 0000000..d96643c
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/envVars.jelly
@@ -0,0 +1,33 @@
+
+
+
+
+
+
+
${%Environment Variables}
+
+
+
+
\ No newline at end of file
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/envVars_da.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/envVars_da.properties
new file mode 100644
index 0000000..a0bf3ee
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/envVars_da.properties
@@ -0,0 +1,23 @@
+# The MIT License
+#
+# Copyright (c) 2004-2010, Sun Microsystems, Inc. Kohsuke Kawaguchi. Knud Poulsen.
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Environment\ Variables=Milj\u00f8variable
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/envVars_de.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/envVars_de.properties
new file mode 100644
index 0000000..0b36c28
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/envVars_de.properties
@@ -0,0 +1,23 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Simon Wiest
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Environment\ Variables=Umgebungsvariablen
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/envVars_es.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/envVars_es.properties
new file mode 100644
index 0000000..7fe9b23
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/envVars_es.properties
@@ -0,0 +1,23 @@
+# The MIT License
+#
+# Copyright (c) 2004-2010, Sun Microsystems, Inc.
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Environment\ Variables=Variables de entorno
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/envVars_fr.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/envVars_fr.properties
new file mode 100644
index 0000000..b11b956
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/envVars_fr.properties
@@ -0,0 +1,23 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Eric Lefevre-Ardant
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Environment\ Variables=Variables d'Environnement
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/envVars_ja.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/envVars_ja.properties
new file mode 100644
index 0000000..18909b7
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/envVars_ja.properties
@@ -0,0 +1,23 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Environment\ Variables=\u74b0\u5883\u5909\u6570
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/envVars_nl.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/envVars_nl.properties
new file mode 100644
index 0000000..78a10c0
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/envVars_nl.properties
@@ -0,0 +1,23 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, id:sorokh
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Environment\ Variables=Omgevingsvariabelen
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/envVars_pt_BR.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/envVars_pt_BR.properties
new file mode 100644
index 0000000..44009ae
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/envVars_pt_BR.properties
@@ -0,0 +1,23 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Reginaldo L. Russinholi, Cleiber Silva
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Environment\ Variables=Vari\u00e1veis de Ambiente
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/envVars_ru.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/envVars_ru.properties
new file mode 100644
index 0000000..1fb3d22
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/envVars_ru.properties
@@ -0,0 +1,23 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Mike Salnikov
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Environment\ Variables=\u041f\u0435\u0440\u0435\u043c\u0435\u043d\u043d\u044b\u0435 \u043e\u043a\u0440\u0443\u0436\u0435\u043d\u0438\u044f
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/envVars_tr.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/envVars_tr.properties
new file mode 100644
index 0000000..8a99aa6
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/envVars_tr.properties
@@ -0,0 +1,23 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Oguz Dag
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Environment\ Variables=Ortam\ De\u011fi\u015fkenleri
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/index.jelly b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/index.jelly
new file mode 100644
index 0000000..03cd50b
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/index.jelly
@@ -0,0 +1,34 @@
+
+
+
+
+
+
+
+ ${%description}
+
+
+
+
\ No newline at end of file
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/index.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/index.properties
new file mode 100644
index 0000000..b277d4b
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/index.properties
@@ -0,0 +1,25 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+description=\
+ Obtain information about the running Maven process by clicking \
+ links from the left. Often useful for trouble-shooting problems.
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/index_da.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/index_da.properties
new file mode 100644
index 0000000..2fdb888
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/index_da.properties
@@ -0,0 +1,24 @@
+# The MIT License
+#
+# Copyright (c) 2004-2010, Sun Microsystems, Inc. Kohsuke Kawaguchi. Knud Poulsen.
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+description=Find information om den k\u00f8rende Mavenproces ved at klikke \
+linkene til venstre. Dette er ofte nyttigt ved fejlfinding.
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/index_de.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/index_de.properties
new file mode 100644
index 0000000..06ffaf2
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/index_de.properties
@@ -0,0 +1,25 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Simon Wiest
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+description=\
+ Durch Klicken auf die links angezeigten Links erhalten Sie Informationen \
+ über den laufenden Maven Prozeß. Dies hilft oft bei der Fehlersuche.
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/index_es.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/index_es.properties
new file mode 100644
index 0000000..538ed1d
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/index_es.properties
@@ -0,0 +1,26 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+description=\
+ Visualiza la información de los procesos maven en ejecución pulsando sobre los enlaces de la izquierda. \
+ Suele ser bastante útil para identificar problemas.
+
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/index_fr.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/index_fr.properties
new file mode 100644
index 0000000..a1938ca
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/index_fr.properties
@@ -0,0 +1,25 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Eric Lefevre-Ardant
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+description=\
+ Obtenez des informations sur le process Maven en cours en cliquant les liens sur la gauche. \
+ Utile pour corriger des problèmes.
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/index_ja.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/index_ja.properties
new file mode 100644
index 0000000..9de9ef7
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/index_ja.properties
@@ -0,0 +1,23 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Seiji Sogabe
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+description=\u8aac\u660e
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/index_nl.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/index_nl.properties
new file mode 100644
index 0000000..e6cb427
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/index_nl.properties
@@ -0,0 +1,26 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, id:sorokh
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+description=\
+ Verkrijg informatie over lopende Maven processen door te klikken \
+ op de webreferentie aan de linkerzijde. Dit kan dikwijls nuttig blijken \
+ bij het analyzeren van problemen.
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/index_pt_BR.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/index_pt_BR.properties
new file mode 100644
index 0000000..d894b93
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/index_pt_BR.properties
@@ -0,0 +1,25 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Reginaldo L. Russinholi, Cleiber Silva
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+description=\
+ Obtenha informa\u00e7\u00f5es sobre o processo Maven em execu\u00e7\u00e3o clicando \
+ nos links da esquerda. Frequentemente \u00fatil para problemas de repara\u00e7\u00e3o.
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/index_ru.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/index_ru.properties
new file mode 100644
index 0000000..03179e1
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/index_ru.properties
@@ -0,0 +1,25 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Mike Salnikov
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+description=\
+ \u041f\u043e\u043b\u0443\u0447\u0438\u0442\u0435 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044e \u043e \u0437\u0430\u043f\u0443\u0449\u0435\u043d\u043d\u043e\u043c \u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0435 Maven, \u043a\u043b\u0438\u043a\u043d\u0443\u0432 \u043d\u0430 \u0441\u0441\u044b\u043b\u043a\u0438 \u0441\u043b\u0435\u0432\u0430.\
+ \u041e\u0431\u044b\u0447\u043d\u043e \u044d\u0442\u043e \u0431\u044b\u0432\u0430\u0435\u0442 \u043f\u043e\u043b\u0435\u0437\u043d\u043e \u0434\u043b\u044f \u0440\u0435\u0448\u0435\u043d\u0438\u044f \u043f\u0440\u043e\u0431\u043b\u0435\u043c.
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/index_tr.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/index_tr.properties
new file mode 100644
index 0000000..61fd348
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/index_tr.properties
@@ -0,0 +1,25 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Oguz Dag
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+description=\
+ \u00c7al\u0131\u015fan Maven i\u015flemleri ile ilgili bilgi almak i\u00e7in l\u00fctfen soldaki linklere t\u0131klay\u0131n\u0131z \
+ Sorun \u00e7\u00f6zme ile ilgili konularda faydal\u0131d\u0131r.
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/sidepanel.jelly b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/sidepanel.jelly
new file mode 100644
index 0000000..deab3da
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/sidepanel.jelly
@@ -0,0 +1,34 @@
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/sidepanel_da.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/sidepanel_da.properties
new file mode 100644
index 0000000..9dcd0d1
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/sidepanel_da.properties
@@ -0,0 +1,26 @@
+# The MIT License
+#
+# Copyright (c) 2004-2010, Sun Microsystems, Inc. Kohsuke Kawaguchi. Knud Poulsen.
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+System\ Properties=Systemegenskaber
+Environment\ Variables=Milj\u00f8variable
+Thread\ Dump=Tr\u00e5ddump
+Script\ Console=Skriptkonsol
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/sidepanel_de.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/sidepanel_de.properties
new file mode 100644
index 0000000..9eb255d
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/sidepanel_de.properties
@@ -0,0 +1,26 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Simon Wiest
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+System\ Properties=Systemeigenschaften
+Environment\ Variables=Umgebungsvariablen
+Thread\ Dump=Thread Dump
+Script\ Console=Skriptkonsole
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/sidepanel_es.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/sidepanel_es.properties
new file mode 100644
index 0000000..ecea55e
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/sidepanel_es.properties
@@ -0,0 +1,26 @@
+# The MIT License
+#
+# Copyright (c) 2004-2010, Sun Microsystems, Inc.
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Thread\ Dump=Volcado de hilos (threads)
+System\ Properties=Propiedades del sistema
+Script\ Console=Consola de comandos
+Environment\ Variables=Variables de entorno
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/sidepanel_fr.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/sidepanel_fr.properties
new file mode 100644
index 0000000..c676de7
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/sidepanel_fr.properties
@@ -0,0 +1,26 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Eric Lefevre-Ardant
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+System\ Properties=Propriétés système
+Environment\ Variables=Variables d''environnement
+Thread\ Dump=Dump du thread
+Script\ Console=Console de script
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/sidepanel_ja.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/sidepanel_ja.properties
new file mode 100644
index 0000000..379138e
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/sidepanel_ja.properties
@@ -0,0 +1,26 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+System\ Properties=\u30b7\u30b9\u30c6\u30e0\u30d7\u30ed\u30d1\u30c6\u30a3
+Environment\ Variables=\u74b0\u5883\u5909\u6570
+Thread\ Dump=\u30b9\u30ec\u30c3\u30c9\u4e00\u89a7
+Script\ Console=\u30b9\u30af\u30ea\u30d7\u30c8\u30b3\u30f3\u30bd\u30fc\u30eb
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/sidepanel_nl.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/sidepanel_nl.properties
new file mode 100644
index 0000000..4c70aa8
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/sidepanel_nl.properties
@@ -0,0 +1,26 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, id:sorokh
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+System\ Properties=Systeemparameters
+Environment\ Variables=Omgevingsvariabelen
+Thread\ Dump=Thread Dump
+Script\ Console=Scriptconsole
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/sidepanel_pt_BR.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/sidepanel_pt_BR.properties
new file mode 100644
index 0000000..f13a6b7
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/sidepanel_pt_BR.properties
@@ -0,0 +1,26 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Reginaldo L. Russinholi, Cleiber Silva
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+System\ Properties=Propriedades do Sistema
+Environment\ Variables=Vari\u00e1veis de Ambiente
+Thread\ Dump=Limpar Threads
+Script\ Console=Console de Script
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/sidepanel_ru.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/sidepanel_ru.properties
new file mode 100644
index 0000000..1a436d9
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/sidepanel_ru.properties
@@ -0,0 +1,26 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Mike Salnikov
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+System\ Properties=\u0421\u0432\u043e\u0439\u0441\u0442\u0432\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u044b
+Environment\ Variables=\u041f\u0435\u0440\u0435\u043c\u0435\u043d\u043d\u044b\u0435 \u043e\u043a\u0440\u0443\u0436\u0435\u043d\u0438\u044f
+Thread\ Dump=\u0414\u0430\u043c\u043f \u043f\u043e\u0442\u043e\u043a\u0430
+Script\ Console=\u041a\u043e\u043d\u0441\u043e\u043b\u044c
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/sidepanel_tr.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/sidepanel_tr.properties
new file mode 100644
index 0000000..172d8fd
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/sidepanel_tr.properties
@@ -0,0 +1,26 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Oguz Dag
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+System\ Properties=Sistem\ \u00d6zellikleri
+Environment\ Variables=Ortam\ De\u011fi\u015fkenleri
+Thread\ Dump=Thread\ Dump
+Script\ Console=Script\ Konsolu
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/systemProperties.jelly b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/systemProperties.jelly
new file mode 100644
index 0000000..3365821
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/systemProperties.jelly
@@ -0,0 +1,34 @@
+
+
+
+
+
+
+
${%System Properties}
+
+
+
+
+
\ No newline at end of file
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/systemProperties_da.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/systemProperties_da.properties
new file mode 100644
index 0000000..1464f5a
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/systemProperties_da.properties
@@ -0,0 +1,23 @@
+# The MIT License
+#
+# Copyright (c) 2004-2010, Sun Microsystems, Inc. Kohsuke Kawaguchi. Knud Poulsen.
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+System\ Properties=Systemegenskaber
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/systemProperties_de.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/systemProperties_de.properties
new file mode 100644
index 0000000..9a809be
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/systemProperties_de.properties
@@ -0,0 +1,23 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Simon Wiest
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+System\ Properties=Systemeigenschaften
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/systemProperties_es.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/systemProperties_es.properties
new file mode 100644
index 0000000..f554675
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/systemProperties_es.properties
@@ -0,0 +1,23 @@
+# The MIT License
+#
+# Copyright (c) 2004-2010, Sun Microsystems, Inc.
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+System\ Properties=Propiedades del sistema
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/systemProperties_fr.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/systemProperties_fr.properties
new file mode 100644
index 0000000..82e1536
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/systemProperties_fr.properties
@@ -0,0 +1,23 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Eric Lefevre-Ardant
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+System\ Properties=Propriétés système
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/systemProperties_ja.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/systemProperties_ja.properties
new file mode 100644
index 0000000..aa2497d
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/systemProperties_ja.properties
@@ -0,0 +1,23 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+System\ Properties=\u30b7\u30b9\u30c6\u30e0\u30d7\u30ed\u30d1\u30c6\u30a3
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/systemProperties_nl.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/systemProperties_nl.properties
new file mode 100644
index 0000000..e103ff6
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/systemProperties_nl.properties
@@ -0,0 +1,23 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, id:sorokh
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+System\ Properties=Systeemparameters
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/systemProperties_pt_BR.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/systemProperties_pt_BR.properties
new file mode 100644
index 0000000..8ba0bae
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/systemProperties_pt_BR.properties
@@ -0,0 +1,23 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Reginaldo L. Russinholi, Cleiber Silva
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+System\ Properties=Propriedades do Sistema
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/systemProperties_ru.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/systemProperties_ru.properties
new file mode 100644
index 0000000..140fbad
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/systemProperties_ru.properties
@@ -0,0 +1,23 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Mike Salnikov
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+System\ Properties=\u0421\u0432\u043e\u0439\u0441\u0442\u0432\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u044b
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/systemProperties_tr.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/systemProperties_tr.properties
new file mode 100644
index 0000000..8185734
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/systemProperties_tr.properties
@@ -0,0 +1,23 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Oguz Dag
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+System\ Properties=Sistem\ \u00d6zellikleri
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/threads.jelly b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/threads.jelly
new file mode 100644
index 0000000..e91b6e8
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/threads.jelly
@@ -0,0 +1,36 @@
+
+
+
+
+
+
+
${%Thread Dump}
+
+
${t.key}
+
${t.value}
+
+
+
+
\ No newline at end of file
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/threads_da.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/threads_da.properties
new file mode 100644
index 0000000..2226971
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/threads_da.properties
@@ -0,0 +1,23 @@
+# The MIT License
+#
+# Copyright (c) 2004-2010, Sun Microsystems, Inc. Kohsuke Kawaguchi. Knud Poulsen.
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Thread\ Dump=Tr\u00e5ddump
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/threads_de.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/threads_de.properties
new file mode 100644
index 0000000..b71cbd5
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/threads_de.properties
@@ -0,0 +1,23 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Simon Wiest
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Thread\ Dump=Thread Dump
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/threads_es.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/threads_es.properties
new file mode 100644
index 0000000..9e8fa01
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/threads_es.properties
@@ -0,0 +1,23 @@
+# The MIT License
+#
+# Copyright (c) 2004-2010, Sun Microsystems, Inc.
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Thread\ Dump=Volcado de hilos (threads)
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/threads_fr.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/threads_fr.properties
new file mode 100644
index 0000000..81443f6
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/threads_fr.properties
@@ -0,0 +1,23 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Eric Lefevre-Ardant
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Thread\ Dump=Dump du Thread
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/threads_ja.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/threads_ja.properties
new file mode 100644
index 0000000..934eae2
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/threads_ja.properties
@@ -0,0 +1,23 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Seiji Sogabe
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Thread\ Dump=\u30b9\u30ec\u30c3\u30c9\u30c0\u30f3\u30d7
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/threads_nl.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/threads_nl.properties
new file mode 100644
index 0000000..098ec8d
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/threads_nl.properties
@@ -0,0 +1,23 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, id:sorokh
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Thread\ Dump=Thread Dump
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/threads_pt_BR.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/threads_pt_BR.properties
new file mode 100644
index 0000000..1d59daa
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/threads_pt_BR.properties
@@ -0,0 +1,23 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Reginaldo L. Russinholi, Cleiber Silva
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Thread\ Dump=Limpar Threads
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/threads_ru.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/threads_ru.properties
new file mode 100644
index 0000000..2da4991
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/threads_ru.properties
@@ -0,0 +1,23 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Mike Salnikov
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Thread\ Dump=\u0414\u0430\u043c\u043f \u043f\u043e\u0442\u043e\u043a\u0430
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/threads_tr.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/threads_tr.properties
new file mode 100644
index 0000000..8b4aa4c
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProbeAction/threads_tr.properties
@@ -0,0 +1,23 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Oguz Dag
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Thread\ Dump=Thread\ Dump
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProcessFactory$1.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProcessFactory$1.class
new file mode 100644
index 0000000..8612c7f
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProcessFactory$1.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProcessFactory$GetClassWorldsJar.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProcessFactory$GetClassWorldsJar.class
new file mode 100644
index 0000000..d7ad34b
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProcessFactory$GetClassWorldsJar.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProcessFactory.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProcessFactory.class
new file mode 100644
index 0000000..979e4f8
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProcessFactory.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProjectActionBuilder.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProjectActionBuilder.class
new file mode 100644
index 0000000..93549ae
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenProjectActionBuilder.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenRedeployer$DescriptorImpl.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenRedeployer$DescriptorImpl.class
new file mode 100644
index 0000000..77b49b0
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenRedeployer$DescriptorImpl.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenRedeployer.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenRedeployer.class
new file mode 100644
index 0000000..37a703c
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenRedeployer.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenReportInfo.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenReportInfo.class
new file mode 100644
index 0000000..519c3b4
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenReportInfo.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenReporter.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenReporter.class
new file mode 100644
index 0000000..d22af7e
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenReporter.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenReporterDescriptor.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenReporterDescriptor.class
new file mode 100644
index 0000000..880f3be
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenReporterDescriptor.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenReporters.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenReporters.class
new file mode 100644
index 0000000..75acca1
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenReporters.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenTestDataPublisher$DescriptorImpl.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenTestDataPublisher$DescriptorImpl.class
new file mode 100644
index 0000000..0b682a4
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenTestDataPublisher$DescriptorImpl.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenTestDataPublisher.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenTestDataPublisher.class
new file mode 100644
index 0000000..2e110ae
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenTestDataPublisher.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenTestDataPublisher/config.jelly b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenTestDataPublisher/config.jelly
new file mode 100644
index 0000000..d264a1c
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenTestDataPublisher/config.jelly
@@ -0,0 +1,46 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenUtil$MaskingClassLoader$1.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenUtil$MaskingClassLoader$1.class
new file mode 100644
index 0000000..4f63148
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenUtil$MaskingClassLoader$1.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenUtil$MaskingClassLoader.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenUtil$MaskingClassLoader.class
new file mode 100644
index 0000000..8ba1203
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenUtil$MaskingClassLoader.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenUtil.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenUtil.class
new file mode 100644
index 0000000..5bc95cf
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenUtil.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenVersionCallable.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenVersionCallable.class
new file mode 100644
index 0000000..b1fbd71
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MavenVersionCallable.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/Messages.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/Messages.class
new file mode 100644
index 0000000..36658c5
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/Messages.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/Messages.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/Messages.properties
new file mode 100644
index 0000000..101da63
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/Messages.properties
@@ -0,0 +1,51 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, id:cactusman
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+MavenBuild.FailedEarlier=Build failed before it gets to this module
+MavenBuild.KeptBecauseOfParent=Kept because {0} is kept
+MavenBuild.Triggering=Triggering a new build of {0}
+MavenBuilder.Aborted=Aborted
+MavenBuilder.AsyncFailed=Asynchronous execution failure
+MavenBuilder.Failed=Maven failed with error.
+MavenBuilder.Waiting=Waiting for Jenkins to finish collecting data
+
+MavenModule.Pronoun=Module
+
+MavenModuleSet.DiplayName=Build a maven2/3 project
+MavenModuleSet.AlternateSettingsRelativePath=Alternate settings file must be a relative path.
+
+MavenModuleSetBuild.DiscoveredModule=Discovered a new module {0} {1}
+MavenModuleSetBuild.FailedToParsePom=Failed to parse POMs
+MavenModuleSetBuild.NoSuchPOMFile=No such file {0}\nPerhaps you need to specify the correct POM file path in the project configuration?
+MavenModuleSetBuild.NoSuchAlternateSettings=No such settings file {0} exists\nPlease verify that your alternate settings file is specified properly and exists in the workspace.
+MavenModuleSetBuild.NoMavenInstall=A Maven installation needs to be available for this project to be built.\nEither your server has no Maven installations defined, or the requested Maven version does not exist.
+
+MavenProbeAction.DisplayName=Monitor Maven Process
+
+MavenProcessFactory.ClassWorldsNotFound=No classworlds*.jar found in {0} -- Is this a valid maven2/3 directory?
+
+MavenRedeployer.DisplayName=Deploy to Maven repository
+ProcessCache.Reusing=Reusing existing maven process
+
+RedeployPublisher.getDisplayName=Deploy artifacts to Maven repository
+RedeployPublisher.RepositoryURL.Mandatory=Repository URL is mandatory
+ReleaseAction.DisplayName=Release New Version
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/Messages_da.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/Messages_da.properties
new file mode 100644
index 0000000..2ef5d60
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/Messages_da.properties
@@ -0,0 +1,44 @@
+# The MIT License
+#
+# Copyright (c) 2004-2010, Sun Microsystems, Inc. Kohsuke Kawaguchi. Knud Poulsen.
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+MavenModuleSetBuild.DiscoveredModule=Opdagede et nyt modul {0} {1}
+MavenBuild.Triggering=Starter et nyt byg af {0}
+MavenBuild.KeptBecauseOfParent=Beholdt da {0} er gemt
+MavenModuleSetBuild.FailedToParsePom=Kunne ikke parse POM''erne
+MavenBuilder.Waiting=Venter p\u00e5 at Jenkins bliver f\u00e6rdig med at samle data
+MavenBuilder.Aborted=Afbrudt
+MavenBuilder.Failed=Maven stoppede med en fejl.
+MavenProbeAction.DisplayName=Overv\u00e5g Mavenproces
+MavenProcessFactory.ClassWorldsNotFound=Ingen classworlds*.jar fundet i {0} -- Er dette et gyldigt maven2 direktorie?
+MavenModuleSet.DiplayName=Byg et maven2/3 projekt
+MavenModule.Pronoun=Modul
+MavenBuild.FailedEarlier=Bygget fejler f\u00f8r det n\u00e5r til dette modul
+MavenModuleSetBuild.NoSuchPOMFile=Ingen fil kaldet {0}\nM\u00e5ske mangler du at specificere den korrekte POM fil placering i projekt konfigurationen?
+MavenRedeployer.DisplayName=Send til Mavenarkiv
+RedeployPublisher.getDisplayName=Send artifakter til Mavenarkiv
+MavenModuleSetBuild.NoMavenInstall=En Maven installation skal v\u00e6re tilg\u00e6ngelig for at dette projekt kan bygge.\n\
+Enten har din server ikke en Maven installation defineret, eller den anmodede Maven version eksisterer ikke.
+ProcessCache.Reusing=Genbrug eksisterende Mavenproces
+MavenBuilder.AsyncFailed=Fejl under asynkron udf\u00f8relse
+MavenModuleSetBuild.NoSuchAlternateSettings=Der eksisterer ingen konfigurationsfil ved navn {0}\n\
+Kontroller at din alternative konfigurationsfil er korrekt specificeret og eksisterer i arbejdsomr\u00e5det
+ReleaseAction.DisplayName=Udgiv ny version
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/Messages_de.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/Messages_de.properties
new file mode 100644
index 0000000..469b246
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/Messages_de.properties
@@ -0,0 +1,55 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Simon Wiest
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+MavenBuild.FailedEarlier=Build schlug bereits vor diesem Modul fehl
+MavenBuild.KeptBecauseOfParent=Zurückbehalten, weil {0} zurückbehalten wurde.
+MavenBuild.Triggering=Löse neuen Build von {0} aus
+MavenBuilder.Aborted=Abgebrochen
+MavenBuilder.AsyncFailed=Fehlschlag der asynchronen Ausführung
+MavenBuilder.Failed=Maven schlug mit Fehlern fehl.
+MavenBuilder.Waiting=Warte bis Jenkins die Datensammlung abgeschlossen hat
+
+MavenModule.Pronoun=Modul
+
+MavenModuleSet.DiplayName=Maven 2/3 Projekt bauen
+MavenModuleSet.AlternateSettingsRelativePath=Alternative Settings-Datei muss ein relativer Pfad sein.
+
+MavenModuleSetBuild.DiscoveredModule=Neues Modul {0} {1} entdeckt
+MavenModuleSetBuild.FailedToParsePom=POMs konnten nicht geparst werden
+MavenModuleSetBuild.NoSuchPOMFile={0} nicht gefunden\nEventuell müssen Sie den korrekten POM-Dateipfad in der Projektkonfiguration angeben.
+MavenModuleSetBuild.NoMavenInstall=\
+ Um dieses Projekt zu bauen, wird eine Maven-Installation benötigt. \
+ Entweder wurden für Ihren Server noch keine Maven-Installationen konfiguriert, \
+ oder die benötigte Maven-Version existiert nicht.
+MavenModuleSetBuild.NoSuchAlternateSettings=\
+ Die Settings-Datei {0} existiert nicht. Bitte überprüfen Sie die Angabe der Settings-Datei \
+ sowie deren Existenz im Arbeitsbereich.
+
+MavenProbeAction.DisplayName=Maven Prozess überwachen
+
+MavenProcessFactory.ClassWorldsNotFound=Datei classworlds*.jar in {0} nicht gefunden -- Ist dies ein gültiges Maven2-Verzeichnis?
+
+MavenRedeployer.DisplayName=In Maven-Repository ausbringen (deploy)
+ProcessCache.Reusing=Bestehenden Maven-Prozess wiederverwenden
+
+RedeployPublisher.getDisplayName=Bringe Artefakte in Maven-Repository aus (deploy)
+ReleaseAction.DisplayName=Neue Version veröffentlichen (release)
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/Messages_es.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/Messages_es.properties
new file mode 100644
index 0000000..331b4c8
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/Messages_es.properties
@@ -0,0 +1,52 @@
+# The MIT License
+#
+# Copyright (c) 2004-, Kohsuke Kawaguchi, Sun Microsystems, Inc., and a number of other of contributers
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+MavenBuild.FailedEarlier=La ejecución falló antes de llegar a este módulo
+MavenBuild.KeptBecauseOfParent=Mantener porque {0} se mantiene
+MavenBuild.Triggering=Lanzando la ejecución de {0}
+MavenBuilder.Aborted=Cancelado
+MavenBuilder.AsyncFailed=La ejecución asincrona ha fallado
+MavenBuilder.Failed=Maven ha acabado con error
+MavenBuilder.Waiting=Esperando a que Jenkins finalize de recopilar datos
+
+MavenModule.Pronoun=Modulo
+
+MavenModuleSet.DiplayName=Crear un proyecto maven2/3
+
+MavenModuleSetBuild.DiscoveredModule=Se ha descubierto un nuevo módulo {0} {1}
+MavenModuleSetBuild.FailedToParsePom=Error al analizar el fichero POM
+MavenModuleSetBuild.NoSuchPOMFile=No existe el fichero {0}\nQuizas sea necesario que especifiques la ubicación del fichero POM
+MavenModuleSetBuild.NoSuchAlternateSettings=No existe el fichero de configuración {0} \nVerifica que se ha especificado un fichero en la configuración, y que dicho fichero existe el el espacio de trabajo.
+MavenModuleSetBuild.NoMavenInstall=Se necesita una instalación de ''maven'' para poder ejecutar este proyecto.\nEs posible que no se haya especificado dónde está la instalación de maven o sea incorrecta.
+
+MavenProbeAction.DisplayName=Monitorizar proceso maven
+
+MavenProcessFactory.ClassWorldsNotFound=No se encontró la libraría classworlds*.jar en {0} -- ¿Es un directorio de instalación de maven válido?
+
+MavenRedeployer.DisplayName=Desplegar al repositorio maven.
+ProcessCache.Reusing=Reutilizar un proceso existente de maven
+
+RedeployPublisher.getDisplayName=Desplegar ficheros al repositorio maven
+ReleaseAction.DisplayName=Publicar una nueva versión
+
+RedeployPublisher.RepositoryURL.Mandatory=La URL del repositorio es obligatoria
+MavenModuleSet.AlternateSettingsRelativePath=El fichero de configuración alternativo debe tener una ruta relativa.
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/Messages_fr.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/Messages_fr.properties
new file mode 100644
index 0000000..0247365
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/Messages_fr.properties
@@ -0,0 +1,46 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Eric Lefevre-Ardant
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+MavenBuild.FailedEarlier=Le build a échoué avant d''atteindre ce module
+MavenBuild.Triggering=Lancement d''un nouveau build de {0}
+MavenBuilder.Aborted=Annulé
+MavenBuilder.AsyncFailed=Erreur d''exécution asynchrone
+MavenBuilder.Failed=Maven a échoué avec une erreur.
+MavenBuilder.Waiting=En attente qu''Jenkins finisse de récupérer les données
+
+MavenModule.Pronoun=Module
+
+MavenModuleSet.DiplayName=Construire un projet maven2/3
+
+MavenModuleSetBuild.DiscoveredModule=Un nouveau module {0} {1} a été trouvé
+MavenModuleSetBuild.FailedToParsePom=Echec à la lecture des POMs
+MavenModuleSetBuild.NoSuchFile=Pas de fichier {0}\nAvez-vous spécifié le bon chemin vers le fichier POM dans la configuration du projet?
+
+MavenProbeAction.DisplayName=Surveiller un process Maven
+
+MavenProcessFactory.ClassWorldsNotFound=Pas de fichier classworlds*.jar trouvé dans {0} -- Est-ce un répertoire maven2/3 valide?
+
+MavenRedeployer.DisplayName=Déployer vers un repository Maven
+ProcessCache.Reusing=Réutilisation du process Maven existant
+
+RedeployPublisher.getDisplayName=Déployer les artefacts dans le repository Maven
+ReleaseAction.DisplayName=Livrer une nouvelle version
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/Messages_ja.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/Messages_ja.properties
new file mode 100644
index 0000000..4554972
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/Messages_ja.properties
@@ -0,0 +1,52 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Seiji Sogabe, id:cactusman
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+MavenBuild.FailedEarlier=\u3053\u306e\u30e2\u30b8\u30e5\u30fc\u30eb\u306e\u524d\u306b\u30d3\u30eb\u30c9\u304c\u5931\u6557\u3057\u307e\u3057\u305f
+MavenBuild.KeptBecauseOfParent={0}\u304c\u4fdd\u7559\u4e2d\u306e\u305f\u3081\u4fdd\u7559\u3057\u307e\u3059
+MavenBuild.Triggering={0}\u306e\u65b0\u898f\u30d3\u30eb\u30c9\u306e\u5b9f\u884c
+MavenBuilder.Aborted=\u4e2d\u6b62
+MavenBuilder.AsyncFailed=\u975e\u540c\u671f\u5b9f\u884c\u5931\u6557
+MavenBuilder.Failed=Maven\u306f\u30a8\u30e9\u30fc\u3067\u5931\u6557\u3057\u307e\u3057\u305f\u3002
+MavenBuilder.Waiting=Jenkins\u304c\u30c7\u30fc\u30bf\u53ce\u96c6\u3092\u5b8c\u4e86\u3059\u308b\u307e\u3067\u5f85\u6a5f\u4e2d
+
+MavenModule.Pronoun=\u30e2\u30b8\u30e5\u30fc\u30eb
+
+MavenModuleSet.DiplayName=Maven2/3\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u306e\u30d3\u30eb\u30c9
+
+MavenModuleSetBuild.DiscoveredModule=\u65b0\u898f\u30e2\u30b8\u30e5\u30fc\u30eb {0} {1} \u3092\u767a\u898b
+MavenModuleSetBuild.FailedToParsePom=POM\u306e\u89e3\u6790\u306b\u5931\u6557
+MavenModuleSetBuild.NoSuchPOMFile={0}\u3068\u3044\u3046\u30d5\u30a1\u30a4\u30eb\u304c\u3042\u308a\u307e\u305b\u3093\u3002\n\u304a\u305d\u3089\u304f\u3001\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u306e\u8a2d\u5b9a\u753b\u9762\u3067\u6b63\u3057\u3044POM\u30d5\u30a1\u30a4\u30eb\u3092\u6307\u5b9a\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3002
+MavenModuleSetBuild.NoSuchAlternateSettings=\
+ \u8a2d\u5b9a\u30d5\u30a1\u30a4\u30eb {0} \u304c\u3042\u308a\u307e\u305b\u3093\u3002\n\u6307\u5b9a\u3057\u305f\u30d5\u30a1\u30a4\u30eb\u540d\u304c\u6b63\u3057\u3044\u3053\u3068\u3001\u30ef\u30fc\u30af\u30b9\u30da\u30fc\u30b9\u306b\u5b58\u5728\u3059\u308b\u3053\u3068\u3092\u78ba\u8a8d\u3057\u3066\u304f\u3060\u3055\u3044\u3002
+MavenModuleSetBuild.NoMavenInstall=\
+ \u3053\u306e\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u3092\u30d3\u30eb\u30c9\u3059\u308b\u306b\u306fMaven\u304c\u5fc5\u8981\u3067\u3059\u3002\nMaven\u306e\u8a2d\u5b9a\u304c\u3055\u308c\u3066\u3044\u306a\u3044\u304b\u3001\u3082\u3057\u304f\u306f\u6307\u5b9a\u3057\u305f\u30d0\u30fc\u30b8\u30e7\u30f3\u306eMaven\u304c\u5b58\u5728\u3057\u307e\u305b\u3093\u3002
+
+MavenProbeAction.DisplayName=Maven\u30d7\u30ed\u30bb\u30b9\u306e\u76e3\u8996
+
+MavenProcessFactory.ClassWorldsNotFound={0}\u306bclassworlds*.jar\u304c\u307f\u3064\u304b\u308a\u307e\u305b\u3093\u3002 -- \u6b63\u3057\u3044Maven2\u306e\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3067\u3059\u304b?
+
+MavenRedeployer.DisplayName=Maven\u30ea\u30dd\u30b8\u30c8\u30ea\u3078\u306e\u30c7\u30d7\u30ed\u30a4
+ProcessCache.Reusing=\u65e2\u5b58Maven\u30d7\u30ed\u30bb\u30b9\u3092\u518d\u5229\u7528
+
+RedeployPublisher.getDisplayName=Maven\u30ea\u30dd\u30b8\u30c8\u30ea\u3078\u6210\u679c\u7269\u3092\u30c7\u30d7\u30ed\u30a4
+RedeployPublisher.RepositoryURL.Mandatory=\u30ea\u30dd\u30b8\u30c8\u30eaURL\u306f\u5fc5\u9808\u3067\u3059\u3002
+ReleaseAction.DisplayName=\u65b0\u898f\u30d0\u30fc\u30b8\u30e7\u30f3\u306e\u30ea\u30ea\u30fc\u30b9
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/Messages_nl.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/Messages_nl.properties
new file mode 100644
index 0000000..82fb8ae
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/Messages_nl.properties
@@ -0,0 +1,47 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, id:sorokh
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+MavenBuild.FailedEarlier=Het bouwen is gefaald voorafgaand aan deze module.
+MavenBuild.KeptBecauseOfParent=Kept because {0} is kept
+MavenBuild.Triggering=Een nieuwe bouwpoging van {0} wordt gestart.
+MavenBuilder.Aborted=Afgebroken
+MavenBuilder.AsyncFailed=Asynchrone uitvoeringsfout
+MavenBuilder.Failed=Maven is gefaald omwille van een fout.
+MavenBuilder.Waiting=Wachtend to Jenkins het verzamelen van gegevens be\u00EBindigd heeft
+
+MavenModule.Pronoun=Module
+
+MavenModuleSet.DiplayName=Bouw een maven2 p/3roject
+
+MavenModuleSetBuild.DiscoveredModule= Een nieuwe module {0} {1} werd ontdekt.
+MavenModuleSetBuild.FailedToParsePom=Het lezen van de POMs is gefaald.
+MavenModuleSetBuild.NoSuchFile=Onbekend bestand {0}\nMisschien moet je het correcte POM bestandspad op te geven in de projectconfiguratie?
+
+MavenProbeAction.DisplayName=Overwaak Maven Proces
+
+MavenProcessFactory.ClassWorldsNotFound=Geen classworlds*.jar gevonden in {0} -- Is dit een geldig maven2 pad?
+
+MavenRedeployer.DisplayName=Installeer in Maven repository
+ProcessCache.Reusing=Hergebruik bestaand maven proces
+
+RedeployPublisher.getDisplayName=Artefacten uitrollen naar de Maven repository
+ReleaseAction.DisplayName=Lever een nieuwe versie af.
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/Messages_pt_BR.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/Messages_pt_BR.properties
new file mode 100644
index 0000000..192711a
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/Messages_pt_BR.properties
@@ -0,0 +1,55 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Reginaldo L. Russinholi, Cleiber Silva
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+MavenBuild.FailedEarlier=Constru\u00e7\u00e3o falhou antes de chegar neste m\u00f3dulo
+MavenBuild.Triggering=Disparando uma nova constru\u00e7\u00e3o de {0}
+MavenBuilder.Aborted=Abortado
+MavenBuilder.AsyncFailed=Falha de execucu\u00e7\u00e3o ass\u00edncrona
+MavenBuilder.Failed=Maven falhou com erro.
+MavenBuilder.Waiting=Aguardando Jenkins terminar de coletar dados
+
+MavenModule.Pronoun=M\u00f3dulo
+
+MavenModuleSet.DiplayName=Construir um projeto maven2/3
+
+MavenModuleSetBuild.DiscoveredModule=Descoberto um novo m\u00f3dulo {0} {1}
+MavenModuleSetBuild.FailedToParsePom=Falhou ao analisar POMs
+
+MavenProbeAction.DisplayName=Monitorar Processo Maven
+
+ProcessCache.Reusing=Reusar processos maven existentes
+
+ReleaseAction.DisplayName=Disponibilizar Nova Vers\u00e3o
+# Kept because {0} is kept
+MavenBuild.KeptBecauseOfParent=Mantido, pois {0} \u00e9 mantida
+# No classworlds*.jar found in {0} -- Is this a valid maven2 directory?
+MavenProcessFactory.ClassWorldsNotFound=classworlds*.jar n\u00e3o encontrado em {0}. Esse \u00e9 um diret\u00f3rio v\u00e1lido para o Meven2?
+# No such file {0}\nPerhaps you need to specify the correct POM file path in the project configuration?
+MavenModuleSetBuild.NoSuchPOMFile=Nenhum arquivo {0} encontrado\ Talvez voc\u00ea deva especificar corretamente o path do arquivo POM.
+# Deploy to Maven repository
+MavenRedeployer.DisplayName=Implantar no reposit\u00f3rio Maven
+# Deploy artifacts to Maven repository
+RedeployPublisher.getDisplayName=Implantar os artefatos no reposit\u00f3rio Maven
+# A Maven installation needs to be available for this project to be built.\nEither your server has no Maven installations defined, or the requested Maven version does not exist.
+MavenModuleSetBuild.NoMavenInstall=Uma instala\u00e7\u00e3o Maven precisa estar dispon\u00edvel para a constru\u00e7\u00e3o desse projeto.
+# No such settings file {0} exists\nPlease verify that your alternate settings file is specified properly and exists in the workspace.
+MavenModuleSetBuild.NoSuchAlternateSettings=N\u00e3o foi localizado o arquivo de configura\u00e7\u00e3o {0}.\Verifique se o seu arquivo de configura\u00e7\u00e3o alternativo est\u00e1 especificado corretamente no workspace
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/Messages_ru.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/Messages_ru.properties
new file mode 100644
index 0000000..81e95de
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/Messages_ru.properties
@@ -0,0 +1,42 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Mike Salnikov
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+MavenBuild.FailedEarlier=\u0421\u0431\u043e\u0440\u043a\u0430 \u043f\u0440\u043e\u0432\u0430\u043b\u0438\u043b\u0430\u0441\u044c \u0434\u043e \u0442\u043e\u0433\u043e \u043a\u0430\u043a \u0434\u043e\u0431\u0440\u0430\u043b\u0430\u0441\u044c \u0434\u043e \u044d\u0442\u043e\u0433\u043e \u043c\u043e\u0434\u0443\u043b\u044f
+MavenBuild.Triggering=\u0417\u0430\u043f\u0443\u0441\u043a\u0430\u044e \u043d\u043e\u0432\u0443\u044e \u0441\u0431\u043e\u0440\u043a\u0443 {0}
+MavenBuilder.Aborted=\u041f\u0440\u0435\u0440\u0432\u0430\u043d\u043e
+MavenBuilder.AsyncFailed=\u041e\u0448\u0438\u0431\u043a\u0430 \u0430\u0441\u0438\u043d\u0445\u0440\u043e\u043d\u043d\u043e\u0433\u043e \u0437\u0430\u043f\u0443\u0441\u043a\u0430
+MavenBuilder.Failed=Maven \u0432\u0435\u0440\u043d\u0443\u043b \u043e\u0448\u0438\u0431\u043a\u0443.
+MavenBuilder.Waiting=\u041e\u0436\u0438\u0434\u0430\u044e \u043f\u043e\u043a\u0430 Jenkins \u0437\u0430\u043a\u043e\u043d\u0447\u0438\u0442 \u0441\u0431\u043e\u0440 \u0434\u0430\u043d\u043d\u044b\u0445
+
+MavenModule.Pronoun=\u041c\u043e\u0434\u0443\u043b\u044c
+
+MavenModuleSet.DiplayName=\u0421\u043e\u0437\u0434\u0430\u0442\u044c \u043f\u0440\u043e\u0435\u043a\u0442 maven2/3
+
+MavenModuleSetBuild.DiscoveredModule=\u041d\u0430\u0439\u0434\u0435\u043d \u043d\u043e\u0432\u044b\u0439 \u043c\u043e\u0434\u0443\u043b\u044c {0} {1}
+MavenModuleSetBuild.FailedToParsePom=\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u043f\u0440\u043e\u0447\u0438\u0442\u0430\u0442\u044c POM \u0444\u0430\u0439\u043b\u044b
+MavenModuleSetBuild.NoSuchFile=\u0424\u0430\u0439\u043b\u0430 "{0}" \u043d\u0435 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u0435\u0442\n\u041f\u043e\u043f\u0440\u043e\u0431\u0443\u0439\u0442\u0435 \u0443\u043a\u0430\u0437\u0430\u0442\u044c \u043f\u043e\u043b\u043d\u044b\u0439 \u043f\u0443\u0442\u044c \u043a POM \u0444\u0430\u0439\u043b\u0443 \u0432 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0430\u0445 \u043f\u0440\u043e\u0435\u043a\u0442\u0430?
+
+MavenProbeAction.DisplayName=\u041e\u0442\u0441\u043b\u0435\u0436\u0438\u0432\u0430\u0442\u044c \u043f\u0440\u043e\u0446\u0435\u0441\u0441 Maven
+
+ProcessCache.Reusing=\u041f\u0435\u0440\u0435\u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u044e \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u044e\u0449\u0438\u0439 \u043f\u0440\u043e\u0446\u0435\u0441\u0441 maven
+
+ReleaseAction.DisplayName=\u0412\u044b\u043f\u0443\u0441\u0442\u0438\u0442\u044c \u043d\u043e\u0432\u0443\u044e \u0432\u0435\u0440\u0441\u0438\u044e
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/Messages_tr.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/Messages_tr.properties
new file mode 100644
index 0000000..b4dddfd
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/Messages_tr.properties
@@ -0,0 +1,47 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Oguz Dag
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+MavenBuild.FailedEarlier=Yap\u0131land\u0131rma bu mod\u00fcle gelmeden \u00d6nce ba\u015far\u0131s\u0131z oldu
+MavenBuild.KeptBecauseOfParent={0} tutuldu\u011fu i\u00e7in tutulmu\u015ftur
+MavenBuild.Triggering={0} i\u00e7in yeni bir yap\u0131land\u0131rma tetikleniyor
+MavenBuilder.Aborted=Durduruldu
+MavenBuilder.AsyncFailed=Asenkron \u00e7al\u0131\u015ft\u0131rma hatas\u0131
+MavenBuilder.Failed=Maven bir hata ile kar\u015f\u0131la\u015ft\u0131.
+MavenBuilder.Waiting=Jenkins''\u0131n bilgi toplamay\u0131 bitirmesi bekleniyor
+
+MavenModule.Pronoun=Mod\u00fcl
+
+MavenModuleSet.DiplayName=Maven2/3 projesi yap\u0131land\u0131r
+
+MavenModuleSetBuild.DiscoveredModule={0} {1} olarak yeni bir mod\u00fcl bulundu
+MavenModuleSetBuild.FailedToParsePom=POMlar\u0131 ayr\u0131\u015ft\u0131r\u0131rken hata ile kar\u015f\u0131la\u015f\u0131ld\u0131
+MavenModuleSetBuild.NoSuchFile={0} diye bir dosya yok\nBelkide projenin konfig\u00fcrasyonunda do\u011fru POM dosyas\u0131n\u0131n dizinini belirtmen gerekmekte?
+
+MavenProbeAction.DisplayName=Maven \u0130\u015flemini G\u00d6zle
+
+MavenProcessFactory.ClassWorldsNotFound=classworlds*.jar {0} i\u00e7erisinde bulunamad\u0131 -- Bu dizinin ge\u00e7erli bir maven2 dizini oldu\u011funa emin olun.
+
+MavenRedeployer.DisplayName=Maven repository''ye deploy et
+ProcessCache.Reusing=Varolan maven i\u015flemin yeniden kullan\u0131l\u0131yor
+
+RedeployPublisher.getDisplayName=Artefaktlar\u0131 Maven repository''ye deploy et
+ReleaseAction.DisplayName=Yeni Versiyon \u00c7\u0131kar (release)
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/Messages_zh_CN.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/Messages_zh_CN.properties
new file mode 100644
index 0000000..33108e0
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/Messages_zh_CN.properties
@@ -0,0 +1,50 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, id:cactusman
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+MavenBuild.FailedEarlier=Build failed before it gets to this module
+MavenBuild.KeptBecauseOfParent=Kept because {0} is kept
+MavenBuild.Triggering=Triggering a new build of {0}
+MavenBuilder.Aborted=Aborted
+MavenBuilder.AsyncFailed=Asynchronous execution failure
+MavenBuilder.Failed=Maven failed with error.
+MavenBuilder.Waiting=Waiting for Jenkins to finish collecting data
+
+MavenModule.Pronoun=\u6a21\u5757
+
+MavenModuleSet.DiplayName=\u6784\u5efa\u4e00\u4e2amaven2/3\u9879\u76ee
+
+MavenModuleSetBuild.DiscoveredModule=Discovered a new module {0} {1}
+MavenModuleSetBuild.FailedToParsePom=Failed to parse POMs
+MavenModuleSetBuild.NoSuchPOMFile=No such file {0}\nPerhaps you need to specify the correct POM file path in the project configuration?
+MavenModuleSetBuild.NoSuchAlternateSettings=No such settings file {0} exists\nPlease verify that your alternate settings file is specified properly and exists in the workspace.
+MavenModuleSetBuild.NoMavenInstall=A Maven installation needs to be available for this project to be built.\nEither your server has no Maven installations defined, or the requested Maven version does not exist.
+
+MavenProbeAction.DisplayName=Monitor Maven Process
+
+MavenProcessFactory.ClassWorldsNotFound=No classworlds*.jar found in {0} -- Is this a valid maven2 directory?
+
+MavenRedeployer.DisplayName=Deploy to Maven repository
+ProcessCache.Reusing=Reusing existing maven process
+
+RedeployPublisher.getDisplayName=Deploy artifacts to Maven repository
+RedeployPublisher.RepositoryURL.Mandatory=Repository URL is mandatory
+ReleaseAction.DisplayName=Release New Version
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/ModuleDependency.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/ModuleDependency.class
new file mode 100644
index 0000000..5d6b6b3
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/ModuleDependency.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/ModuleName.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/ModuleName.class
new file mode 100644
index 0000000..1d7b819
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/ModuleName.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MojoInfo$1$1.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MojoInfo$1$1.class
new file mode 100644
index 0000000..fc9cbbe
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MojoInfo$1$1.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MojoInfo$1.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MojoInfo$1.class
new file mode 100644
index 0000000..d322a49
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MojoInfo$1.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MojoInfo.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MojoInfo.class
new file mode 100644
index 0000000..1be308c
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/MojoInfo.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/PluginImpl.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/PluginImpl.class
new file mode 100644
index 0000000..d7ddd1e
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/PluginImpl.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/PluginName.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/PluginName.class
new file mode 100644
index 0000000..39f44e4
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/PluginName.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/PomInfo.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/PomInfo.class
new file mode 100644
index 0000000..f4b1026
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/PomInfo.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/ProcessCache$1.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/ProcessCache$1.class
new file mode 100644
index 0000000..093ec94
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/ProcessCache$1.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/ProcessCache$Factory.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/ProcessCache$Factory.class
new file mode 100644
index 0000000..7ae6e24
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/ProcessCache$Factory.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/ProcessCache$GetSystemProperties.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/ProcessCache$GetSystemProperties.class
new file mode 100644
index 0000000..0f6230b
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/ProcessCache$GetSystemProperties.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/ProcessCache$MavenProcess.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/ProcessCache$MavenProcess.class
new file mode 100644
index 0000000..6ebd2bf
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/ProcessCache$MavenProcess.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/ProcessCache$NewProcess.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/ProcessCache$NewProcess.class
new file mode 100644
index 0000000..7dbcc67
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/ProcessCache$NewProcess.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/ProcessCache$PerChannel.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/ProcessCache$PerChannel.class
new file mode 100644
index 0000000..948ea60
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/ProcessCache$PerChannel.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/ProcessCache$RedirectableOutputStream.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/ProcessCache$RedirectableOutputStream.class
new file mode 100644
index 0000000..8ec2f96
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/ProcessCache$RedirectableOutputStream.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/ProcessCache$SetSystemProperties.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/ProcessCache$SetSystemProperties.class
new file mode 100644
index 0000000..ee7a57b
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/ProcessCache$SetSystemProperties.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/ProcessCache.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/ProcessCache.class
new file mode 100644
index 0000000..278e269
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/ProcessCache.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher$1.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher$1.class
new file mode 100644
index 0000000..ca88fa2
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher$1.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher$DescriptorImpl.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher$DescriptorImpl.class
new file mode 100644
index 0000000..ab89fee
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher$DescriptorImpl.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher$GetUserHome.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher$GetUserHome.class
new file mode 100644
index 0000000..fd80edd
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher$GetUserHome.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher$WrappedArtifactRepository.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher$WrappedArtifactRepository.class
new file mode 100644
index 0000000..10f85da
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher$WrappedArtifactRepository.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher.class
new file mode 100644
index 0000000..10411df
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher.stapler b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher.stapler
new file mode 100644
index 0000000..a9a4c6e
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher.stapler
@@ -0,0 +1,2 @@
+#Mon Apr 04 09:40:54 PDT 2011
+constructor=id,url,uniqueVersion,evenIfUnstable
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/DescriptorImpl/doCheckUrl.stapler b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/DescriptorImpl/doCheckUrl.stapler
new file mode 100644
index 0000000..3e602b3
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/DescriptorImpl/doCheckUrl.stapler
@@ -0,0 +1 @@
+url
\ No newline at end of file
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/config.jelly b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/config.jelly
new file mode 100644
index 0000000..a934c4b
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/config.jelly
@@ -0,0 +1,42 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/config_da.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/config_da.properties
new file mode 100644
index 0000000..93b8a42
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/config_da.properties
@@ -0,0 +1,26 @@
+# The MIT License
+#
+# Copyright (c) 2004-2010, Sun Microsystems, Inc. Kohsuke Kawaguchi. Knud Poulsen.
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Repository\ URL=Mavenarkiv URL
+Deploy\ even\ if\ the\ build\ is\ unstable=Overf\u00f8r til Mavenarkiv, ogs\u00e5 selvom bygget er ustabilt
+Repository\ ID=Mavenarkiv ID
+Assign\ unique\ versions\ to\ snapshots=Giv \u00f8jebliksbillederne unikke versioner
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/config_de.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/config_de.properties
new file mode 100644
index 0000000..88e8020
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/config_de.properties
@@ -0,0 +1,26 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Simon Wiest
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Repository\ ID=Repository-ID
+Repository\ URL=Repository-URL
+Assign\ unique\ versions\ to\ snapshots=Snapshots eindeutige Versionen zuordnen
+Deploy\ even\ if\ the\ build\ is\ unstable=Ausbringen (deploy), auch wenn der Build instabil ist.
\ No newline at end of file
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/config_es.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/config_es.properties
new file mode 100644
index 0000000..94417f9
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/config_es.properties
@@ -0,0 +1,25 @@
+# The MIT License
+#
+# Copyright (c) 2004-2010, Sun Microsystems, Inc.
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+Repository\ URL=Dirección del repositorio (URL)
+Assign\ unique\ versions\ to\ snapshots=Asignar versión única a cada instantánea (snapshot)
+Repository\ ID=Identificador (ID) del repositorio
+Deploy\ even\ if\ the\ build\ is\ unstable=Desplegar aunque la ejecución sea inestable
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/config_fr.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/config_fr.properties
new file mode 100644
index 0000000..14803c5
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/config_fr.properties
@@ -0,0 +1,25 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Eric Lefevre-Ardant
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Repository\ URL=URL du repository
+Repository\ ID=ID du repository
+Assign\ unique\ versions\ to\ snapshots=Affecter des numéros de version uniques aux snapshots
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/config_ja.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/config_ja.properties
new file mode 100644
index 0000000..da4e969
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/config_ja.properties
@@ -0,0 +1,26 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Seiji Sogabe, id:cactusman
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Repository\ URL=\u30EA\u30DD\u30B8\u30C8\u30EAURL
+Repository\ ID=\u30EA\u30DD\u30B8\u30C8\u30EAID
+Assign\ unique\ versions\ to\ snapshots=\u30B9\u30CA\u30C3\u30D7\u30B7\u30E7\u30C3\u30C8\u306B\u30E6\u30CB\u30FC\u30AF\u306A\u30D0\u30FC\u30B8\u30E7\u30F3\u3092\u4ED8\u4E0E
+Deploy\ even\ if\ the\ build\ is\ unstable=\u4E0D\u5B89\u5B9A\u30D3\u30EB\u30C9\u3067\u3082\u30C7\u30D7\u30ED\u30A4
\ No newline at end of file
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/config_nl.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/config_nl.properties
new file mode 100644
index 0000000..afe3642
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/config_nl.properties
@@ -0,0 +1,23 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, id:sorokh
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Repository\ URL=URL van de repository
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/config_pt_BR.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/config_pt_BR.properties
new file mode 100644
index 0000000..cb117cc
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/config_pt_BR.properties
@@ -0,0 +1,26 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Reginaldo L. Russinholi, Cleiber Silva
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Repository\ URL=URL do reposit\u00f3rio
+Deploy\ even\ if\ the\ build\ is\ unstable=Implantar mesmo que a constru\u00e7\u00e3o esteja inst\u00e1vel
+Repository\ ID=ID do reposit\u00f3rio
+Assign\ unique\ versions\ to\ snapshots=Atribuir vers\u00f5es exclusivas para os Snapshots
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/config_ru.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/config_ru.properties
new file mode 100644
index 0000000..261b7bf
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/config_ru.properties
@@ -0,0 +1,23 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Mike Salnikov
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Repository\ URL=URL \u0440\u0435\u043f\u043e\u0437\u0438\u0442\u043e\u0440\u0438\u044f
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/config_tr.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/config_tr.properties
new file mode 100644
index 0000000..f73e060
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/config_tr.properties
@@ -0,0 +1,23 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Oguz Dag
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Repository\ URL=
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/help-evenIfUnstable.html b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/help-evenIfUnstable.html
new file mode 100644
index 0000000..8ada063
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/help-evenIfUnstable.html
@@ -0,0 +1,8 @@
+
+ If checked, the deployment will be performed even if the build is unstable.
+
+
+ This can be useful if the same build definition is being used for continuous integration
+ and to deploy nightly snapshots.
+
+
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/help-evenIfUnstable_de.html b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/help-evenIfUnstable_de.html
new file mode 100644
index 0000000..2fc1f8b
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/help-evenIfUnstable_de.html
@@ -0,0 +1,9 @@
+
+ Wenn angewählt, wird das Modul ausgebracht (deploy), selbst wenn der Build
+ instabil ist.
+
+
+ Dies kann sinnvoll sein, wenn dieselbe Build-Konfiguration beispielsweise sowohl für
+ Continuous Integration als auch für nächtliche Schnappschüsse verwendet wird.
+
+
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/help-id.html b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/help-id.html
new file mode 100644
index 0000000..e37ea03
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/help-id.html
@@ -0,0 +1,15 @@
+
+ For some repository URL (such as scpexe), Maven may require
+ additional configuration (such as user name, executable path, etc.)
+
+ Maven wants you to specify this in ~/.m2/settings.xml of
+ the user that runs Jenkins, and this ID value is used to retrieve
+ the setting information from this file (that is, the <server>
+ element with this ID value will be consulted for various
+ protocol-specific configuration values.)
+
+
\ No newline at end of file
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/help-id_de.html b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/help-id_de.html
new file mode 100644
index 0000000..534977c
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/help-id_de.html
@@ -0,0 +1,15 @@
+
+ Für manche Repository-URLs (z.B. scpexe) benötigt Maven
+ zusätzliche Einstellungen (Benutzername, Pfad zum Kommando, usw.).
+
+ Maven erwartet diese Einstellungen in der Datei ~/.m2/settings.xml
+ des Benutzerkontos, unter dem Jenkins läuft. Die hier angegebene
+ Repository-ID wird verwendet, um die passenden Einstellungen in der
+ Settings-Datei zu finden (technisch: die protokollspezifischen
+ Informationen werden dem <server>-Element entnommen, dessen
+ ID mit dem hier angegebenen Wert übereinstimmt).
+
+
\ No newline at end of file
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/help-id_fr.html b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/help-id_fr.html
new file mode 100644
index 0000000..e37ea03
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/help-id_fr.html
@@ -0,0 +1,15 @@
+
+ For some repository URL (such as scpexe), Maven may require
+ additional configuration (such as user name, executable path, etc.)
+
+ Maven wants you to specify this in ~/.m2/settings.xml of
+ the user that runs Jenkins, and this ID value is used to retrieve
+ the setting information from this file (that is, the <server>
+ element with this ID value will be consulted for various
+ protocol-specific configuration values.)
+
+
\ No newline at end of file
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/help-id_ja.html b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/help-id_ja.html
new file mode 100644
index 0000000..b28bea3
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/help-id_ja.html
@@ -0,0 +1,12 @@
+
\ No newline at end of file
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/help-uniqueVersion.html b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/help-uniqueVersion.html
new file mode 100644
index 0000000..5c41b4e
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/help-uniqueVersion.html
@@ -0,0 +1,8 @@
+
+ If checked, the deployment will assign timestamp-based unique version number
+ to the deployed artifacts, when their versions end with -SNAPSHOT.
+
+
+ To the best of my knowledge, this is almost never a useful option especially
+ for CI servers like Jenkins.
+
\ No newline at end of file
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/help-uniqueVersion_de.html b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/help-uniqueVersion_de.html
new file mode 100644
index 0000000..09be1e2
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/help-uniqueVersion_de.html
@@ -0,0 +1,8 @@
+
+ Wenn angewählt, wird beim Deployment eine eindeutige Versionsnummer zugeordnet
+ (basierend auf einem Zeitstempel), wenn die Versionen mit -SNAPSHOT enden.
+
+
+ In den allermeisten Fällen ist dies jedoch im Zusammenspiel mit Continuous-Integration-Servern
+ (wie z.B. Jenkins) wenig sinnvoll.
+
\ No newline at end of file
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/help-uniqueVersion_fr.html b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/help-uniqueVersion_fr.html
new file mode 100644
index 0000000..5c41b4e
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/help-uniqueVersion_fr.html
@@ -0,0 +1,8 @@
+
+ If checked, the deployment will assign timestamp-based unique version number
+ to the deployed artifacts, when their versions end with -SNAPSHOT.
+
+
+ To the best of my knowledge, this is almost never a useful option especially
+ for CI servers like Jenkins.
+
\ No newline at end of file
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/help-uniqueVersion_ja.html b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/help-uniqueVersion_ja.html
new file mode 100644
index 0000000..64d8c6c
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/help-uniqueVersion_ja.html
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/help-url.html b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/help-url.html
new file mode 100644
index 0000000..cee3034
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/help-url.html
@@ -0,0 +1,4 @@
+
+ Specify the URL of the Maven repository to deploy artifacts to,
+ such as scp://server.acme.org/export/home/maven/repository/
+
\ No newline at end of file
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/help-url_de.html b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/help-url_de.html
new file mode 100644
index 0000000..97d8dad
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/help-url_de.html
@@ -0,0 +1,4 @@
+
+ Gibt die URL des Maven-Repositories an, in das die Artefakte ausgebracht (deployed)
+ werden sollen, z.B. scp://server.acme.org/export/home/maven/repository/.
+
\ No newline at end of file
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/help-url_fr.html b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/help-url_fr.html
new file mode 100644
index 0000000..cee3034
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/help-url_fr.html
@@ -0,0 +1,4 @@
+
+ Specify the URL of the Maven repository to deploy artifacts to,
+ such as scp://server.acme.org/export/home/maven/repository/
+
\ No newline at end of file
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/help-url_ja.html b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/help-url_ja.html
new file mode 100644
index 0000000..02a67f1
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/help-url_ja.html
@@ -0,0 +1,4 @@
+
\ No newline at end of file
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/help.html b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/help.html
new file mode 100644
index 0000000..5e87652
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/help.html
@@ -0,0 +1,16 @@
+
+
+ Deploy artifacts to a Maven repository. In comparison with the standard mvn deploy,
+ this feature allows you to deploy artifacts after the entire build is confirmed to be
+ successful.
+
+
+ This prevents a typical problem in Maven, where some modules are deployed before
+ a critical failure is discovered later down the road, rendering the repository state
+ inconsistent.
+
+
+ Note that regardless of this configuration, you can always manually come back
+ to Jenkins and deploy any of the past artifacts to any repository of your choice,
+ after the fact.
+
\ No newline at end of file
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/help_de.html b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/help_de.html
new file mode 100644
index 0000000..a6b2d79
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/help_de.html
@@ -0,0 +1,14 @@
+
+ Bringt Artefakte in ein Maven-Repository aus (deployment). Im Gegensatz zum
+ üblichen mvn deploy, bringt dieses Funktionsmerkmal Artefakte erst dann aus,
+ wenn der komplette Build erfolgreich abgeschlossen wurde.
+
+
+ Dies verhindert ein typisches Problem im Zusammenspiel mit Maven, bei dem zunächst einige
+ Module bereits ausgebracht werden, bevor etwas später im Build ein kritischer Fehler
+ entdeckt wird - und somit das Repository in einen inkonsistenten Zustand gerät.
+
+
+ Hinweis: Unabhängig von dieser Einstellung können Sie aber auch jederzeit manuell
+ Artefakte aus durchgeführten Builds in beliebige Repositories ausbringen.
+
\ No newline at end of file
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/help_fr.html b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/help_fr.html
new file mode 100644
index 0000000..5e87652
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/help_fr.html
@@ -0,0 +1,16 @@
+
+
+ Deploy artifacts to a Maven repository. In comparison with the standard mvn deploy,
+ this feature allows you to deploy artifacts after the entire build is confirmed to be
+ successful.
+
+
+ This prevents a typical problem in Maven, where some modules are deployed before
+ a critical failure is discovered later down the road, rendering the repository state
+ inconsistent.
+
+
+ Note that regardless of this configuration, you can always manually come back
+ to Jenkins and deploy any of the past artifacts to any repository of your choice,
+ after the fact.
+
\ No newline at end of file
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/help_ja.html b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/help_ja.html
new file mode 100644
index 0000000..46c4773
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/RedeployPublisher/help_ja.html
@@ -0,0 +1,12 @@
+
\ No newline at end of file
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/SplittableBuildListener$1.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/SplittableBuildListener$1.class
new file mode 100644
index 0000000..e52324b
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/SplittableBuildListener$1.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/SplittableBuildListener.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/SplittableBuildListener.class
new file mode 100644
index 0000000..e160d47
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/SplittableBuildListener.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/TransferListenerImpl.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/TransferListenerImpl.class
new file mode 100644
index 0000000..4600d1b
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/TransferListenerImpl.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/UnbuiltModuleAction.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/UnbuiltModuleAction.class
new file mode 100644
index 0000000..5aff213
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/UnbuiltModuleAction.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/AbstractMavenJavadocArchiver$MavenJavadocAction.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/AbstractMavenJavadocArchiver$MavenJavadocAction.class
new file mode 100644
index 0000000..535f086
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/AbstractMavenJavadocArchiver$MavenJavadocAction.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/AbstractMavenJavadocArchiver.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/AbstractMavenJavadocArchiver.class
new file mode 100644
index 0000000..26a4299
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/AbstractMavenJavadocArchiver.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/BuildInfoRecorder$1.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/BuildInfoRecorder$1.class
new file mode 100644
index 0000000..2198713
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/BuildInfoRecorder$1.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/BuildInfoRecorder$DescriptorImpl.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/BuildInfoRecorder$DescriptorImpl.class
new file mode 100644
index 0000000..7328ae7
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/BuildInfoRecorder$DescriptorImpl.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/BuildInfoRecorder.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/BuildInfoRecorder.class
new file mode 100644
index 0000000..846c5b4
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/BuildInfoRecorder.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord$1.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord$1.class
new file mode 100644
index 0000000..5b1284f
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord$1.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord$2.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord$2.class
new file mode 100644
index 0000000..24871b0
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord$2.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord$HistoryWidgetImpl.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord$HistoryWidgetImpl.class
new file mode 100644
index 0000000..87b967f
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord$HistoryWidgetImpl.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord$Record.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord$Record.class
new file mode 100644
index 0000000..f9e9afb
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord$Record.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord.class
new file mode 100644
index 0000000..ced3336
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord/badge.jelly b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord/badge.jelly
new file mode 100644
index 0000000..44f3b19
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord/badge.jelly
@@ -0,0 +1,33 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord/badge_da.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord/badge_da.properties
new file mode 100644
index 0000000..200fc42
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord/badge_da.properties
@@ -0,0 +1,23 @@
+# The MIT License
+#
+# Copyright (c) 2004-2010, Sun Microsystems, Inc. Kohsuke Kawaguchi. Knud Poulsen.
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Deployed\ to\ repository=Sendt til Mavenarkiv
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord/badge_de.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord/badge_de.properties
new file mode 100644
index 0000000..d03d187
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord/badge_de.properties
@@ -0,0 +1,23 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Simon Wiest
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Deployed\ to\ repository=Ausgebracht in Repository
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord/badge_es.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord/badge_es.properties
new file mode 100644
index 0000000..ae0d740
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord/badge_es.properties
@@ -0,0 +1,23 @@
+# The MIT License
+#
+# Copyright (c) 2004-2010, Sun Microsystems, Inc.
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Deployed\ to\ repository=Desplegar al repositorio
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord/badge_fr.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord/badge_fr.properties
new file mode 100644
index 0000000..b27681e
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord/badge_fr.properties
@@ -0,0 +1,23 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Eric Lefevre-Ardant
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Deployed\ to\ repository=Déployé sur le repository
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord/badge_ja.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord/badge_ja.properties
new file mode 100644
index 0000000..0686009
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord/badge_ja.properties
@@ -0,0 +1,23 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Seiji Sogabe
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Deployed\ to\ repository=\u30EA\u30DD\u30B8\u30C8\u30EA\u306B\u30C7\u30D7\u30ED\u30A4\u6E08\u307F
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord/badge_pt_BR.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord/badge_pt_BR.properties
new file mode 100644
index 0000000..6b2ba05
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord/badge_pt_BR.properties
@@ -0,0 +1,23 @@
+# The MIT License
+#
+# Copyright (c) 2004-2010, Sun Microsystems, Inc., Cleiber Silva
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Deployed\ to\ repository=
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord/badge_tr.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord/badge_tr.properties
new file mode 100644
index 0000000..0a23b06
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord/badge_tr.properties
@@ -0,0 +1,23 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Oguz Dag
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Deployed\ to\ repository=Repository''ye deploy edildi
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord/doRedeploy.stapler b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord/doRedeploy.stapler
new file mode 100644
index 0000000..5539ed0
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord/doRedeploy.stapler
@@ -0,0 +1 @@
+id,repositoryUrl,uniqueVersion
\ No newline at end of file
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord/index.jelly b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord/index.jelly
new file mode 100644
index 0000000..1574a4f
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord/index.jelly
@@ -0,0 +1,59 @@
+
+
+
+
+
+
+
+
+
+
+
+ ${%Redeploy Artifacts}
+
+
+
+
+
+
+
+
+
+
+
+ ${%This page allows you to redeploy the build artifacts to a repository after the fact.}
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord/index_da.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord/index_da.properties
new file mode 100644
index 0000000..efa3d24
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord/index_da.properties
@@ -0,0 +1,26 @@
+# The MIT License
+#
+# Copyright (c) 2004-2010, Sun Microsystems, Inc. Kohsuke Kawaguchi. Knud Poulsen.
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Redeploy\ Artifacts=Gensend artifakter
+This\ page\ allows\ you\ to\ redeploy\ the\ build\ artifacts\ to\ a\ repository\ after\ the\ fact.=\
+Denne side g\u00f8r det muligt at gensende byggeartifakterne til et Mavenarkiv efter bygget er udf\u00f8rt.
+OK=OK
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord/index_de.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord/index_de.properties
new file mode 100644
index 0000000..e6f7738
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord/index_de.properties
@@ -0,0 +1,27 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Simon Wiest
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+This\ page\ allows\ you\ to\ redeploy\ the\ build\ artifacts\ to\ a\ repository\ after\ the\ fact.=\
+ Auf dieser Seite können Sie Artefakte im Nachhinein (also nach Abschluss eines Builds) \
+ in ein Maven-Repository ausbringen.
+Redeploy\ Artifacts=Artefakte ausbringen (deploy)
+OK=OK
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord/index_es.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord/index_es.properties
new file mode 100644
index 0000000..78716c0
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord/index_es.properties
@@ -0,0 +1,25 @@
+# The MIT License
+#
+# Copyright (c) 2004-2010, Sun Microsystems, Inc.
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+OK=Aceptar
+This\ page\ allows\ you\ to\ redeploy\ the\ build\ artifacts\ to\ a\ repository\ after\ the\ fact.=Esta p\u00E1gina te permite desplegar los artefactos que se creen correctamente (sin fallos) a un repositorio
+Redeploy\ Artifacts=Desplegar artefactos
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord/index_fr.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord/index_fr.properties
new file mode 100644
index 0000000..a767ce1
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord/index_fr.properties
@@ -0,0 +1,25 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Eric Lefevre-Ardant
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+This\ page\ allows\ you\ to\ redeploy\ the\ build\ artifacts\ to\ a\ repository\ after\ the\ fact.=Cette page vous permet de redéployer les artefacts vers un repository après coup.
+Redeploy\ Artifacts=Redéployer les artefacts
+OK=
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord/index_ja.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord/index_ja.properties
new file mode 100644
index 0000000..bd62f0e
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord/index_ja.properties
@@ -0,0 +1,26 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Seiji Sogabe
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Redeploy\ Artifacts=\u6210\u679c\u7269\u306e\u518d\u30c7\u30d7\u30ed\u30a4
+This\ page\ allows\ you\ to\ redeploy\ the\ build\ artifacts\ to\ a\ repository\ after\ the\ fact.=\
+ \u30d3\u30eb\u30c8\u5f8c\u306b\u6210\u679c\u7269\u3092\u30ea\u30dd\u30b8\u30c8\u30ea\u306b\u518d\u30c7\u30d7\u30ed\u30a4\u3057\u307e\u3059\u3002
+OK=\u5b9f\u884c
\ No newline at end of file
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord/index_pt_BR.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord/index_pt_BR.properties
new file mode 100644
index 0000000..8547c83
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord/index_pt_BR.properties
@@ -0,0 +1,26 @@
+# The MIT License
+#
+# Copyright (c) 2004-2010, Sun Microsystems, Inc., Cleiber Silva
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Redeploy\ Artifacts=Reimplantar artefatos
+This\ page\ allows\ you\ to\ redeploy\ the\ build\ artifacts\ to\ a\ repository\ after\ the\ fact.=Essa p\u00e1gina permite reimplantar \
+os artefatos da constru\u00e7\u00e3o.
+OK=OK
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord/index_tr.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord/index_tr.properties
new file mode 100644
index 0000000..7e0fc1e
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAbstractArtifactRecord/index_tr.properties
@@ -0,0 +1,24 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Oguz Dag
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+This\ page\ allows\ you\ to\ redeploy\ the\ build\ artifacts\ to\ a\ repository\ after\ the\ fact.=\
+Bu sayfa t\u00fcm i\u015flemler bittikten sonra bile yap\u0131land\u0131rma artefaktlar\u0131n\u0131, repository''ye yeniden deploy edebilmeyi sa\u011flar.
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAggregatedArtifactRecord.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAggregatedArtifactRecord.class
new file mode 100644
index 0000000..398bb13
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenAggregatedArtifactRecord.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenArtifact$1.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenArtifact$1.class
new file mode 100644
index 0000000..39fceaf
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenArtifact$1.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenArtifact.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenArtifact.class
new file mode 100644
index 0000000..7636c42
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenArtifact.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenArtifactArchiver$1.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenArtifactArchiver$1.class
new file mode 100644
index 0000000..57a8d54
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenArtifactArchiver$1.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenArtifactArchiver$2.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenArtifactArchiver$2.class
new file mode 100644
index 0000000..cda495f
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenArtifactArchiver$2.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenArtifactArchiver$DescriptorImpl.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenArtifactArchiver$DescriptorImpl.class
new file mode 100644
index 0000000..700c200
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenArtifactArchiver$DescriptorImpl.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenArtifactArchiver.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenArtifactArchiver.class
new file mode 100644
index 0000000..e527ba3
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenArtifactArchiver.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenArtifactRecord.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenArtifactRecord.class
new file mode 100644
index 0000000..8783184
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenArtifactRecord.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenFingerprinter$1.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenFingerprinter$1.class
new file mode 100644
index 0000000..fff4a8b
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenFingerprinter$1.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenFingerprinter$DescriptorImpl.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenFingerprinter$DescriptorImpl.class
new file mode 100644
index 0000000..8dd2426
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenFingerprinter$DescriptorImpl.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenFingerprinter.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenFingerprinter.class
new file mode 100644
index 0000000..520c3da
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenFingerprinter.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenJavadocArchiver$DescriptorImpl.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenJavadocArchiver$DescriptorImpl.class
new file mode 100644
index 0000000..1e793b5
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenJavadocArchiver$DescriptorImpl.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenJavadocArchiver.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenJavadocArchiver.class
new file mode 100644
index 0000000..b5fca54
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenJavadocArchiver.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenMailer$DescriptorImpl.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenMailer$DescriptorImpl.class
new file mode 100644
index 0000000..6a32cef
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenMailer$DescriptorImpl.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenMailer.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenMailer.class
new file mode 100644
index 0000000..b7d0aad
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenMailer.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenSiteArchiver$1.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenSiteArchiver$1.class
new file mode 100644
index 0000000..8479a51
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenSiteArchiver$1.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenSiteArchiver$DescriptorImpl.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenSiteArchiver$DescriptorImpl.class
new file mode 100644
index 0000000..b53e6b7
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenSiteArchiver$DescriptorImpl.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenSiteArchiver$SiteAction.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenSiteArchiver$SiteAction.class
new file mode 100644
index 0000000..319b3d0
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenSiteArchiver$SiteAction.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenSiteArchiver.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenSiteArchiver.class
new file mode 100644
index 0000000..4cf9971
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenSiteArchiver.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenTestJavadocArchiver$DescriptorImpl.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenTestJavadocArchiver$DescriptorImpl.class
new file mode 100644
index 0000000..8bf5283
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenTestJavadocArchiver$DescriptorImpl.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenTestJavadocArchiver.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenTestJavadocArchiver.class
new file mode 100644
index 0000000..9071f0c
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/MavenTestJavadocArchiver.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/Messages.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/Messages.class
new file mode 100644
index 0000000..127c8f1
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/Messages.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/Messages.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/Messages.properties
new file mode 100644
index 0000000..f8e1354
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/Messages.properties
@@ -0,0 +1,51 @@
+# The MIT License
+#
+# Copyright (c) 2004-2010, Sun Microsystems, Inc., Kohsuke Kawaguchi, Seiji Sogabe
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+BuildInfoRecorder.DisplayName=Record build information
+
+MavenArtifact.DeployingMainArtifact=Deploying the main artifact {0}
+MavenArtifact.DeployingAttachedArtifact=Deploying the attached artifact {0}
+
+MavenArtifactArchiver.DisplayName=Archive the artifacts
+MavenArtifactArchiver.FailedToInstallToMaster=Failed to install artifact to the master
+
+MavenFingerprinter.DisplayName=Record fingerprints
+
+MavenJavadocArchiver.DisplayName=Publish javadoc
+MavenTestJavadocArchiver.DisplayName=Publish Test javadoc
+MavenJavadocArchiver.FailedToCopy=Unable to copy Javadoc from {0} to {1}
+MavenJavadocArchiver.NoDestDir=Unable to obtain the destDir from javadoc mojo
+
+MavenMailer.DisplayName=E-mail Notification
+
+MavenSiteArchiver.DisplayName=Maven-generated site
+
+ReportAction.DisplayName=Maven reports
+ReportCollector.DisplayName=Record Maven reports
+ReportCollector.OutsideSite=Maven report output goes to {0}, which is outside project reporting path{1}
+
+SurefireArchiver.DisplayName=Publish surefire reports
+SurefireArchiver.NoReportsDir=Unable to obtain the reportsDirectory from surefire:test mojo
+SurefireArchiver.Recording=[JENKINS] Recording test results
+
+MavenAbstractArtifactRecord.Displayname=Redeploy Artifacts
+HistoryWidgetImpl.Displayname=Deployment History
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/Messages_da.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/Messages_da.properties
new file mode 100644
index 0000000..b3a65ca
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/Messages_da.properties
@@ -0,0 +1,41 @@
+# The MIT License
+#
+# Copyright (c) 2004-2010, Sun Microsystems, Inc. Kohsuke Kawaguchi. Knud Poulsen.
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+MavenJavadocArchiver.FailedToCopy=Kan ikke kopiere Javadocs fra {0} til {1}
+ReportAction.DisplayName=Mavenrapporter
+MavenFingerprinter.DisplayName=Opsamling af filfingeraftryk
+MavenArtifactArchiver.DisplayName=Arkiver atifakterne
+BuildInfoRecorder.DisplayName=Opsamle byggeinformation
+MavenMailer.DisplayName=E-mail p\u00e5mindelse
+MavenJavadocArchiver.DisplayName=Publicer javadoc
+MavenArtifact.DeployingAttachedArtifact=Send de vedh\u00e6ftede artifakter {0}
+MavenSiteArchiver.DisplayName=Maven genereret site
+SurefireArchiver.Recording=[JENKINS] Opsamler test resultater
+MavenJavadocArchiver.NoDestDir=Kan ikke finde destDir fra javadoc mojo''en
+MavenAbstractArtifactRecord.Displayname=Gensend artifakter
+ReportCollector.OutsideSite=Maven rapportens output g\u00f8r til {0}, hvilket ikke er i projektets rapporteringssti {1}
+ReportCollector.DisplayName=Opsamle maven rapporter
+MavenArtifactArchiver.FailedToInstallToMaster=Det lykkedes ikke at installere artifakten p\u00e5 master''en
+MavenArtifact.DeployingMainArtifact=Sender main artifakten {0}
+SurefireArchiver.DisplayName=Publicer surefirerapporter
+HistoryWidgetImpl.Displayname=Sendingshistorik
+SurefireArchiver.NoReportsDir=Kan ikke finde reportsDirectory fra surefire:test mojo''en
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/Messages_de.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/Messages_de.properties
new file mode 100644
index 0000000..d3eaf8e
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/Messages_de.properties
@@ -0,0 +1,53 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Simon Wiest
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+BuildInfoRecorder.DisplayName=Build-Informationen aufzeichnen
+
+HistoryWidgetImpl.Displayname=Entwicklungsverlauf
+
+MavenAbstractArtifactRecord.Displayname=Artefakte ausbringen (deploy)
+
+MavenArtifact.DeployingMainArtifact=Hauptartefakt {0} wird ausgebracht (deploy)
+MavenArtifact.DeployingAttachedArtifact=Verknüpfte Artefakte {0} werden ausgebracht (deploy)
+
+MavenArtifactArchiver.DisplayName=Artefakte archivieren
+MavenArtifactArchiver.FailedToInstallToMaster=Artefakt konnte nicht auf dem Master installiert werden
+
+MavenFingerprinter.DisplayName=Fingerabdrücke aufzeichnen
+
+MavenJavadocArchiver.DisplayName=Javadoc veröffentlichen
+MavenJavadocArchiver.FailedToCopy=Javadocs konnten nicht von {0} nach {1} kopiert werden
+MavenJavadocArchiver.NoDestDir=Das Zielverzeichnis für die Javadocs konnte nicht vom javadoc-Mojo ermittelt werden.
+
+MavenMailer.DisplayName=E-Mail-Benachrichtigung
+
+MavenSiteArchiver.DisplayName=Maven Site
+
+ReportAction.DisplayName=Maven-Berichte
+ReportCollector.DisplayName=Maven-Berichte aufzeichnen
+ReportCollector.OutsideSite=Maven-Berichte werden nach {0} ausgegeben, was außerhalb des Projektberichtspfad {1} liegt
+
+SurefireArchiver.DisplayName=Surefire-Berichte veröffentlichen
+SurefireArchiver.NoReportsDir=Das Berichtsverzeichnis konnte nicht vom surefire:test-Mojo ermittelt werden.
+SurefireArchiver.Recording=[JENKINS] Zeichne Testergebnisse auf
+
+
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/Messages_es.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/Messages_es.properties
new file mode 100644
index 0000000..c68b829
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/Messages_es.properties
@@ -0,0 +1,51 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Seiji Sogabe
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+BuildInfoRecorder.DisplayName=Registro de la información de ejecuciones
+
+MavenArtifact.DeployingMainArtifact=Desplegando el artefacto principal {0}
+MavenArtifact.DeployingAttachedArtifact=Desplegando el artefacto adjunto {0}
+
+MavenArtifactArchiver.DisplayName=Guardar los artefacto producidos
+MavenArtifactArchiver.FailedToInstallToMaster=Error al instalar el artefacto en el nodo principal
+
+MavenFingerprinter.DisplayName=Guardar marcas de fichero
+
+MavenJavadocArchiver.DisplayName=Publcar javadoc
+MavenJavadocArchiver.FailedToCopy=Imposible de copiar Javadoc desd {0} a {1}
+MavenJavadocArchiver.NoDestDir=Imposible de idenfificar el directorio destino ''destDir'' del javadoc mojo
+
+MavenMailer.DisplayName=Notificación por E-mail
+
+MavenSiteArchiver.DisplayName=Sitio generado por Maven
+
+ReportAction.DisplayName=Informes de Maven
+ReportCollector.DisplayName=Guardar informes de Maven
+ReportCollector.OutsideSite=La salida de maven se almacena en {0}, que está fuera de la ruta de informes del proyecto {1}
+
+SurefireArchiver.DisplayName=Publicar informes de ''surefire''
+SurefireArchiver.NoReportsDir=Imposible de determinar el directorio de informes ''reportsDirectory'' del surefire:test mojo
+SurefireArchiver.Recording=[JENKINS] Guardando informes de test
+
+MavenAbstractArtifactRecord.Displayname=Redesplegar Artefactos
+HistoryWidgetImpl.Displayname=Historia de despliegues
+
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/Messages_fr.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/Messages_fr.properties
new file mode 100644
index 0000000..1896859
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/Messages_fr.properties
@@ -0,0 +1,50 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Eric Lefevre-Ardant
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+BuildInfoRecorder.DisplayName=Enregistrer les informations du build
+
+MavenArtifact.DeployingMainArtifact=Déploiement de l''artefact principal {0}
+MavenArtifact.DeployingAttachedArtifact=Déploiement de l''artefact attaché {0}
+
+MavenArtifactArchiver.DisplayName=Archiver les artefacts
+MavenArtifactArchiver.FailedToInstallToMaster=Echec à l''installation de l''artefact sur le maître
+
+MavenFingerprinter.DisplayName=Enregistrer les empreintes numériques
+
+MavenJavadocArchiver.DisplayName=Publier les javadocs
+MavenJavadocArchiver.FailedToCopy=Impossible de copier les javadocs de {0} vers {1}
+MavenJavadocArchiver.NoDestDir=Impossible d''obtenir le répertoire de destination à partir du plugin javadoc
+
+MavenMailer.DisplayName=Notification par email
+
+MavenSiteArchiver.DisplayName=Site généré par Maven
+
+ReportAction.DisplayName=Rapports Maven
+ReportCollector.DisplayName=Enregister les rapports Maven
+ReportCollector.OutsideSite=La sortie des rapports Maven se fait vers {0}, soit hors du chemin de rapport projet {1}
+
+SurefireArchiver.DisplayName=Publier les rapports Surefire
+SurefireArchiver.NoReportsDir=Impossible d''obtenir le chemin vers les rapports à partir du plugin surefire:test
+SurefireArchiver.Recording=[JENKINS] Enregistrement des résultats des tests
+
+MavenAbstractArtifactRecord.Displayname=Redéployer les artefacts
+HistoryWidgetImpl.Displayname=Historique des déploiements
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/Messages_ja.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/Messages_ja.properties
new file mode 100644
index 0000000..e8e0d97
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/Messages_ja.properties
@@ -0,0 +1,50 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Seiji Sogabe, id:cactusman
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+BuildInfoRecorder.DisplayName=\u30D3\u30EB\u30C9\u60C5\u5831\u306E\u8A18\u9332
+
+MavenArtifact.DeployingMainArtifact=\u6210\u679C\u7269 {0} \u306E\u30C7\u30D7\u30ED\u30A4
+MavenArtifact.DeployingAttachedArtifact=\u6210\u679C\u7269 {0} \u306E\u30C7\u30D7\u30ED\u30A4
+
+MavenArtifactArchiver.DisplayName=\u6210\u679C\u7269\u306E\u30A2\u30FC\u30AB\u30A4\u30D6
+MavenArtifactArchiver.FailedToInstallToMaster=\u6210\u679C\u7269\u306E\u30DE\u30B9\u30BF\u30FC\u3078\u306E\u914D\u7F6E\u306B\u5931\u6557\u3057\u307E\u3057\u305F\u3002
+
+MavenFingerprinter.DisplayName=\u30D5\u30A1\u30A4\u30EB\u6307\u7D0B\u3092\u8A18\u9332
+
+MavenJavadocArchiver.DisplayName=Javadoc\u306E\u4FDD\u5B58
+MavenJavadocArchiver.FailedToCopy=Javadoc\u3092 {0} \u304B\u3089 {1} \u3078\u30B3\u30D4\u30FC\u3067\u304D\u307E\u305B\u3093\u3067\u3057\u305F\u3002
+MavenJavadocArchiver.NoDestDir=Javadoc Mojo\u304B\u3089\u5B9B\u5148\u30C7\u30A3\u30EC\u30AF\u30C8\u30EA\u3092\u53D6\u5F97\u3067\u304D\u307E\u305B\u3093\u3067\u3057\u305F\u3002
+
+MavenMailer.DisplayName=E-mail\u3067\u306E\u901A\u77E5
+
+MavenSiteArchiver.DisplayName=\u30D7\u30ED\u30B8\u30A7\u30AF\u30C8\u6587\u66F8
+
+ReportAction.DisplayName=Maven\u30EC\u30DD\u30FC\u30C8
+ReportCollector.DisplayName=Maven\u30EC\u30DD\u30FC\u30C8\u306E\u8A18\u9332
+ReportCollector.OutsideSite=Maven\u30EC\u30DD\u30FC\u30C8\u306F {0}\u306B\u51FA\u529B\u3055\u308C\u307E\u3059\u304C\u3001\u30D7\u30ED\u30B8\u30A7\u30AF\u30C8\u306E\u30D1\u30B9 {1} \u306E\u5916\u3067\u3059\u3002
+
+SurefireArchiver.DisplayName=Surefire\u30EC\u30DD\u30FC\u30C8\u306E\u4FDD\u5B58
+SurefireArchiver.NoReportsDir=surefire:test mojo\u304B\u3089reportsDirectory\u3092\u53D6\u5F97\u3067\u304D\u307E\u305B\u3093\u3067\u3057\u305F\u3002
+SurefireArchiver.Recording=[JENKINS] \u30C6\u30B9\u30C8\u7D50\u679C\u306E\u8A18\u9332
+
+MavenAbstractArtifactRecord.Displayname=\u6210\u679C\u7269\u306E\u518D\u30C7\u30D7\u30ED\u30A4
+HistoryWidgetImpl.Displayname=\u30C7\u30D7\u30ED\u30A4\u5C65\u6B74
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/Messages_nl.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/Messages_nl.properties
new file mode 100644
index 0000000..91c44dc
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/Messages_nl.properties
@@ -0,0 +1,46 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, id:sorokh
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+BuildInfoRecorder.DisplayName=Registreer informatie over het bouwprocess
+
+MavenArtifact.DeployingMainArtifact=Hoofdartefact {0} wordt uitgerold.
+MavenArtifact.DeployingAttachedArtifact=Gekoppeld artefact {0} wordt uitgerold.
+
+MavenArtifactArchiver.DisplayName=Archiveer de artifacten
+MavenArtifactArchiver.FailedToInstallToMaster=Installatie van artifact op de hoofdnode is gefaald.
+
+MavenFingerprinter.DisplayName=Registreer vingerafdrukken
+
+MavenJavadocArchiver.DisplayName=Publiceer javadoc
+MavenJavadocArchiver.FailedToCopy=Kon de javadoc niet kopi\u00EBren van {0} naar {1}
+MavenJavadocArchiver.NoDestDir=Kon het doelpad voor de javadoc niet verkrijgen van de javadoc-mojo
+
+MavenMailer.DisplayName=E-mail-notificatie
+
+ReportAction.DisplayName=Maven rapport
+ReportCollector.DisplayName=Registreer Maven reporten
+ReportCollector.OutsideSite=Rapportuitvoer van Maven wordt naar {0} geschreven. Dit pad ligt echter buiten \
+ het geconfigureerde rapporteringspad {1}
+
+SurefireArchiver.DisplayName=Publiceer surefire reporten
+SurefireArchiver.NoReportsDir=Kon de het pad naar de rapporten niet verkrijgen van de surefire:test mojo
+SurefireArchiver.Recording=[JENKINS] Vastleggen testresultaten
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/Messages_pt_BR.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/Messages_pt_BR.properties
new file mode 100644
index 0000000..4017506
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/Messages_pt_BR.properties
@@ -0,0 +1,45 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Reginaldo L. Russinholi, Cleiber Silva
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+BuildInfoRecorder.DisplayName=Gravar informa\u00e7\u00f5es da constru\u00e7\u00e3o
+MavenArtifactArchiver.DisplayName=Arquivar os artefatos
+MavenArtifactArchiver.FailedToInstallToMaster=Falhou em instalar artefato para o mestre
+MavenFingerprinter.DisplayName=Gravar fingerprints
+MavenJavadocArchiver.DisplayName=Publicar javadoc
+MavenJavadocArchiver.FailedToCopy=Incapaz de copiar Javadoc de {0} para {1}
+MavenJavadocArchiver.NoDestDir=Incapaz de obter destDir do mojo javadoc
+MavenMailer.DisplayName=Notifica\u00e7\u00e3o de E-mail
+ReportAction.DisplayName=Relat\u00f3rios Maven
+ReportCollector.DisplayName=Gravar relat\u00f3rios Maven
+ReportCollector.OutsideSite=Sa\u00edda do relat\u00f3rio Maven vai para {0}, que est\u00e1 fora do caminho de relat\u00f3rio do projeto {1}
+SurefireArchiver.DisplayName=Publicar relat\u00f3rios Surefire
+SurefireArchiver.NoReportsDir=Incapaz de obter reportsDirectory do surefire:test mojo
+SurefireArchiver.Recording=[JENKINS] Gravando resultados de teste# Deploying the attached artifact {0}
+MavenArtifact.DeployingAttachedArtifact=
+# Maven-generated site
+MavenSiteArchiver.DisplayName=Site Maven-gerado
+# Redeploy Artifacts
+MavenAbstractArtifactRecord.Displayname=Reimplantar artefatos
+# Deploying the main artifact {0}
+MavenArtifact.DeployingMainArtifact=Implantar o artefato principal
+# Deployment History
+HistoryWidgetImpl.Displayname=Hit\u00f3rico de implanta\u00e7\u00f5es
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/Messages_tr.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/Messages_tr.properties
new file mode 100644
index 0000000..2b72da6
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/Messages_tr.properties
@@ -0,0 +1,45 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Oguz Dag
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+BuildInfoRecorder.DisplayName=Yap\u0131land\u0131rma bilgisini kaydet
+
+MavenArtifactArchiver.DisplayName=Artefaktlar\u0131 ar\u015fivle
+MavenArtifactArchiver.FailedToInstallToMaster=Artefakt Master Sunucuya y\u00fcklenirken hata olu\u015ftu
+
+MavenArtifact.DeployingMainArtifact=Ana artefakt {0}''\u0131 deploy ediyor
+MavenArtifact.DeployingAttachedArtifact=Eklenmi\u015f artefakt {0}''\u0131 deploy ediyor
+
+MavenFingerprinter.DisplayName=Parmakizlerini kaydet
+
+MavenJavadocArchiver.DisplayName=Javadoc yay\u0131nla
+MavenJavadocArchiver.FailedToCopy=Javadoc {0}''dan {1}''e kopyalanam\u0131yor
+MavenJavadocArchiver.NoDestDir=Javadoc mojodan ''destDir'' \u00f6zelli\u011fi al\u0131nam\u0131yor
+
+MavenMailer.DisplayName=E-posta bilgilendirmesi
+
+ReportAction.DisplayName=Maven raporlar\u0131
+ReportCollector.DisplayName=Maven raporlar\u0131n\u0131 kaydet
+ReportCollector.OutsideSite=Maven rapor \u00e7\u0131kt\u0131s\u0131, projenin raporlama dizini olan {1} d\u0131\u015f\u0131ndaki {0}''a gidiyor
+
+SurefireArchiver.DisplayName=Surefire raporlar\u0131n\u0131 yay\u0131nla
+SurefireArchiver.NoReportsDir=surefire:test mojosundan reportsDirectory \u00f6zelli\u011fi al\u0131nam\u0131yor
+SurefireArchiver.Recording=[JENKINS] Test sonu\u00e7lar\u0131n\u0131 kaydediyor
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/ReportAction$Entry.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/ReportAction$Entry.class
new file mode 100644
index 0000000..22ecd8d
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/ReportAction$Entry.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/ReportAction.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/ReportAction.class
new file mode 100644
index 0000000..7cb921d
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/ReportAction.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/ReportCollector$AddActionTask.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/ReportCollector$AddActionTask.class
new file mode 100644
index 0000000..c55cf51
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/ReportCollector$AddActionTask.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/ReportCollector$DescriptorImpl.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/ReportCollector$DescriptorImpl.class
new file mode 100644
index 0000000..48290d7
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/ReportCollector$DescriptorImpl.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/ReportCollector.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/ReportCollector.class
new file mode 100644
index 0000000..27b7539
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/ReportCollector.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/SurefireAggregatedReport.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/SurefireAggregatedReport.class
new file mode 100644
index 0000000..b11184d
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/SurefireAggregatedReport.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/SurefireAggregatedReport/index.jelly b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/SurefireAggregatedReport/index.jelly
new file mode 100644
index 0000000..3950584
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/SurefireAggregatedReport/index.jelly
@@ -0,0 +1,66 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/SurefireAggregatedReport/index_da.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/SurefireAggregatedReport/index_da.properties
new file mode 100644
index 0000000..4023887
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/SurefireAggregatedReport/index_da.properties
@@ -0,0 +1,27 @@
+# The MIT License
+#
+# Copyright (c) 2004-2010, Sun Microsystems, Inc. Kohsuke Kawaguchi. Knud Poulsen.
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+diff=diff
+Test\ Result=Testresultat
+Module=Modul
+Total=I alt
+Fail=Fejler
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/SurefireAggregatedReport/index_de.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/SurefireAggregatedReport/index_de.properties
new file mode 100644
index 0000000..bbc24a3
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/SurefireAggregatedReport/index_de.properties
@@ -0,0 +1,27 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Simon Wiest
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Test\ Result=Testergebnis
+Module=Modul
+Fail=Fehlgeschlagen
+diff=Differenz
+Total=Gesamt
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/SurefireAggregatedReport/index_es.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/SurefireAggregatedReport/index_es.properties
new file mode 100644
index 0000000..d83aeca
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/SurefireAggregatedReport/index_es.properties
@@ -0,0 +1,27 @@
+# The MIT License
+#
+# Copyright (c) 2004-2010, Sun Microsystems, Inc.
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Total=Total
+Fail=Fallos
+Module=Módulo
+diff=differencias
+Test\ Result=Resultado del test
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/SurefireAggregatedReport/index_fr.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/SurefireAggregatedReport/index_fr.properties
new file mode 100644
index 0000000..eda1b78
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/SurefireAggregatedReport/index_fr.properties
@@ -0,0 +1,27 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Eric Lefevre-Ardant
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Test\ Result=Résultat des tests
+Module=
+Fail=Echec
+diff=Différence
+Total=
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/SurefireAggregatedReport/index_ja.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/SurefireAggregatedReport/index_ja.properties
new file mode 100644
index 0000000..a876be6
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/SurefireAggregatedReport/index_ja.properties
@@ -0,0 +1,27 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, id:cactusman
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Test\ Result=\u30c6\u30b9\u30c8\u7d50\u679c
+Module=\u30e2\u30b8\u30e5\u30fc\u30eb
+Fail=\u5931\u6557
+diff=\u5dee\u5206
+Total=\u30c8\u30fc\u30bf\u30eb
\ No newline at end of file
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/SurefireAggregatedReport/index_nl.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/SurefireAggregatedReport/index_nl.properties
new file mode 100644
index 0000000..1eab0f2
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/SurefireAggregatedReport/index_nl.properties
@@ -0,0 +1,27 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, id:sorokh
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Test\ Result=Testresultaat
+Module=Module
+Fail=Gefaald
+diff=delta
+Total=Totaal
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/SurefireAggregatedReport/index_pt_BR.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/SurefireAggregatedReport/index_pt_BR.properties
new file mode 100644
index 0000000..56a2ab1
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/SurefireAggregatedReport/index_pt_BR.properties
@@ -0,0 +1,27 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Reginaldo L. Russinholi, Cleiber Silva
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Test\ Result=Resultado do Teste
+Module=M\u00f3dulo
+Fail=Falha
+diff=diferen\u00e7a
+Total=Total
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/SurefireAggregatedReport/index_ru.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/SurefireAggregatedReport/index_ru.properties
new file mode 100644
index 0000000..496404b
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/SurefireAggregatedReport/index_ru.properties
@@ -0,0 +1,27 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Mike Salnikov
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Test\ Result=\u0420\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u044b \u0442\u0435\u0441\u0442\u043e\u0432
+Module=\u041c\u043e\u0434\u0443\u043b\u044c
+Fail=\u041e\u0448\u0438\u0431\u043a\u0430
+diff=\u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0435
+Total=\u0412\u0441\u0435\u0433\u043e
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/SurefireAggregatedReport/index_sv_SE.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/SurefireAggregatedReport/index_sv_SE.properties
new file mode 100644
index 0000000..64c4c7d
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/SurefireAggregatedReport/index_sv_SE.properties
@@ -0,0 +1,27 @@
+# The MIT License
+#
+# Copyright (c) 2004-2010, Sun Microsystems, Inc.
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Fail=Fel
+Module=Modul
+Test\ Result=Testresultat
+Total=Totalt
+diff=diff
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/SurefireAggregatedReport/index_tr.properties b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/SurefireAggregatedReport/index_tr.properties
new file mode 100644
index 0000000..1d6aa62
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/SurefireAggregatedReport/index_tr.properties
@@ -0,0 +1,27 @@
+# The MIT License
+#
+# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Oguz Dag
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Test\ Result=Test Sonu\u00e7lar\u0131
+Module=Mod\u00fcl
+Fail=Ba\u015far\u0131s\u0131z\ ol
+diff=fark
+Total=Toplam
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/SurefireArchiver$1.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/SurefireArchiver$1.class
new file mode 100644
index 0000000..d7fab66
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/SurefireArchiver$1.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/SurefireArchiver$DescriptorImpl.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/SurefireArchiver$DescriptorImpl.class
new file mode 100644
index 0000000..65fd560
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/SurefireArchiver$DescriptorImpl.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/SurefireArchiver$FactoryImpl.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/SurefireArchiver$FactoryImpl.class
new file mode 100644
index 0000000..3114815
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/SurefireArchiver$FactoryImpl.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/SurefireArchiver.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/SurefireArchiver.class
new file mode 100644
index 0000000..b181f6f
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/SurefireArchiver.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/SurefireReport.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/SurefireReport.class
new file mode 100644
index 0000000..85049bd
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/reporters/SurefireReport.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/util/ExecutionEventLogger.class b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/util/ExecutionEventLogger.class
new file mode 100644
index 0000000..d211ef5
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/classes/hudson/maven/util/ExecutionEventLogger.class
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/lib/aether-api-1.11.jar b/work/plugins/maven-plugin/WEB-INF/lib/aether-api-1.11.jar
new file mode 100644
index 0000000..5bdade8
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/lib/aether-api-1.11.jar
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/lib/aether-connector-wagon-1.11.jar b/work/plugins/maven-plugin/WEB-INF/lib/aether-connector-wagon-1.11.jar
new file mode 100644
index 0000000..b5bf1b8
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/lib/aether-connector-wagon-1.11.jar
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/lib/aether-impl-1.11.jar b/work/plugins/maven-plugin/WEB-INF/lib/aether-impl-1.11.jar
new file mode 100644
index 0000000..8ce9f13
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/lib/aether-impl-1.11.jar
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/lib/aether-spi-1.11.jar b/work/plugins/maven-plugin/WEB-INF/lib/aether-spi-1.11.jar
new file mode 100644
index 0000000..8fb6603
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/lib/aether-spi-1.11.jar
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/lib/aether-util-1.11.jar b/work/plugins/maven-plugin/WEB-INF/lib/aether-util-1.11.jar
new file mode 100644
index 0000000..9f517ea
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/lib/aether-util-1.11.jar
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/lib/ant-1.8.0.jar b/work/plugins/maven-plugin/WEB-INF/lib/ant-1.8.0.jar
new file mode 100644
index 0000000..85292f0
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/lib/ant-1.8.0.jar
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/lib/ant-launcher-1.8.0.jar b/work/plugins/maven-plugin/WEB-INF/lib/ant-launcher-1.8.0.jar
new file mode 100644
index 0000000..08ec632
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/lib/ant-launcher-1.8.0.jar
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/lib/avalon-framework-4.1.3.jar b/work/plugins/maven-plugin/WEB-INF/lib/avalon-framework-4.1.3.jar
new file mode 100644
index 0000000..fd72580
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/lib/avalon-framework-4.1.3.jar
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/lib/commons-cli-1.2.jar b/work/plugins/maven-plugin/WEB-INF/lib/commons-cli-1.2.jar
new file mode 100644
index 0000000..ce4b9ff
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/lib/commons-cli-1.2.jar
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/lib/commons-codec-1.4.jar b/work/plugins/maven-plugin/WEB-INF/lib/commons-codec-1.4.jar
new file mode 100644
index 0000000..458d432
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/lib/commons-codec-1.4.jar
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/lib/commons-httpclient-3.1-rc1.jar b/work/plugins/maven-plugin/WEB-INF/lib/commons-httpclient-3.1-rc1.jar
new file mode 100644
index 0000000..09fe533
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/lib/commons-httpclient-3.1-rc1.jar
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/lib/commons-io-1.4.jar b/work/plugins/maven-plugin/WEB-INF/lib/commons-io-1.4.jar
new file mode 100644
index 0000000..133dc6c
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/lib/commons-io-1.4.jar
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/lib/commons-logging-1.1.jar b/work/plugins/maven-plugin/WEB-INF/lib/commons-logging-1.1.jar
new file mode 100644
index 0000000..2ff9bbd
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/lib/commons-logging-1.1.jar
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/lib/commons-net-2.0.jar b/work/plugins/maven-plugin/WEB-INF/lib/commons-net-2.0.jar
new file mode 100644
index 0000000..996e78f
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/lib/commons-net-2.0.jar
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/lib/doxia-sink-api-1.0.jar b/work/plugins/maven-plugin/WEB-INF/lib/doxia-sink-api-1.0.jar
new file mode 100644
index 0000000..577b8eb
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/lib/doxia-sink-api-1.0.jar
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/lib/hudson-maven-embedder-3.2.jar b/work/plugins/maven-plugin/WEB-INF/lib/hudson-maven-embedder-3.2.jar
new file mode 100644
index 0000000..fcd617c
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/lib/hudson-maven-embedder-3.2.jar
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/lib/jsch-0.1.38.jar b/work/plugins/maven-plugin/WEB-INF/lib/jsch-0.1.38.jar
new file mode 100644
index 0000000..73a15aa
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/lib/jsch-0.1.38.jar
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/lib/lib-jenkins-maven-artifact-manager-1.1.jar b/work/plugins/maven-plugin/WEB-INF/lib/lib-jenkins-maven-artifact-manager-1.1.jar
new file mode 100644
index 0000000..0f06e9c
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/lib/lib-jenkins-maven-artifact-manager-1.1.jar
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/lib/log4j-1.2.9.jar b/work/plugins/maven-plugin/WEB-INF/lib/log4j-1.2.9.jar
new file mode 100644
index 0000000..a6568b0
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/lib/log4j-1.2.9.jar
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/lib/logkit-1.0.1.jar b/work/plugins/maven-plugin/WEB-INF/lib/logkit-1.0.1.jar
new file mode 100644
index 0000000..d3250ee
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/lib/logkit-1.0.1.jar
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/lib/maven-aether-provider-3.0.3.jar b/work/plugins/maven-plugin/WEB-INF/lib/maven-aether-provider-3.0.3.jar
new file mode 100644
index 0000000..9bfd73b
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/lib/maven-aether-provider-3.0.3.jar
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/lib/maven-agent-1.1.jar b/work/plugins/maven-plugin/WEB-INF/lib/maven-agent-1.1.jar
new file mode 100644
index 0000000..0c40b9b
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/lib/maven-agent-1.1.jar
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/lib/maven-artifact-3.0.3.jar b/work/plugins/maven-plugin/WEB-INF/lib/maven-artifact-3.0.3.jar
new file mode 100644
index 0000000..d8beb5e
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/lib/maven-artifact-3.0.3.jar
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/lib/maven-compat-3.0.3.jar b/work/plugins/maven-plugin/WEB-INF/lib/maven-compat-3.0.3.jar
new file mode 100644
index 0000000..f46060c
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/lib/maven-compat-3.0.3.jar
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/lib/maven-core-3.0.3.jar b/work/plugins/maven-plugin/WEB-INF/lib/maven-core-3.0.3.jar
new file mode 100644
index 0000000..38af5ea
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/lib/maven-core-3.0.3.jar
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/lib/maven-embedder-3.0.3.jar b/work/plugins/maven-plugin/WEB-INF/lib/maven-embedder-3.0.3.jar
new file mode 100644
index 0000000..3793058
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/lib/maven-embedder-3.0.3.jar
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/lib/maven-interceptor-1.1.jar b/work/plugins/maven-plugin/WEB-INF/lib/maven-interceptor-1.1.jar
new file mode 100644
index 0000000..8a21269
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/lib/maven-interceptor-1.1.jar
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/lib/maven-model-3.0.3.jar b/work/plugins/maven-plugin/WEB-INF/lib/maven-model-3.0.3.jar
new file mode 100644
index 0000000..365cb51
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/lib/maven-model-3.0.3.jar
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/lib/maven-model-builder-3.0.3.jar b/work/plugins/maven-plugin/WEB-INF/lib/maven-model-builder-3.0.3.jar
new file mode 100644
index 0000000..c0e51fb
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/lib/maven-model-builder-3.0.3.jar
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/lib/maven-plugin-api-3.0.3.jar b/work/plugins/maven-plugin/WEB-INF/lib/maven-plugin-api-3.0.3.jar
new file mode 100644
index 0000000..eb97c84
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/lib/maven-plugin-api-3.0.3.jar
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/lib/maven-reporting-api-3.0.jar b/work/plugins/maven-plugin/WEB-INF/lib/maven-reporting-api-3.0.jar
new file mode 100644
index 0000000..5e76d45
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/lib/maven-reporting-api-3.0.jar
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/lib/maven-repository-metadata-3.0.3.jar b/work/plugins/maven-plugin/WEB-INF/lib/maven-repository-metadata-3.0.3.jar
new file mode 100644
index 0000000..52a8350
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/lib/maven-repository-metadata-3.0.3.jar
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/lib/maven-settings-3.0.3.jar b/work/plugins/maven-plugin/WEB-INF/lib/maven-settings-3.0.3.jar
new file mode 100644
index 0000000..2984d2d
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/lib/maven-settings-3.0.3.jar
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/lib/maven-settings-builder-3.0.3.jar b/work/plugins/maven-plugin/WEB-INF/lib/maven-settings-builder-3.0.3.jar
new file mode 100644
index 0000000..514385a
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/lib/maven-settings-builder-3.0.3.jar
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/lib/maven2.1-interceptor-1.2.jar b/work/plugins/maven-plugin/WEB-INF/lib/maven2.1-interceptor-1.2.jar
new file mode 100644
index 0000000..1482ddb
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/lib/maven2.1-interceptor-1.2.jar
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/lib/maven3-agent-1.1.jar b/work/plugins/maven-plugin/WEB-INF/lib/maven3-agent-1.1.jar
new file mode 100644
index 0000000..2a37938
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/lib/maven3-agent-1.1.jar
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/lib/maven3-interceptor-1.1.jar b/work/plugins/maven-plugin/WEB-INF/lib/maven3-interceptor-1.1.jar
new file mode 100644
index 0000000..f51e0ae
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/lib/maven3-interceptor-1.1.jar
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/lib/nekohtml-1.9.13.jar b/work/plugins/maven-plugin/WEB-INF/lib/nekohtml-1.9.13.jar
new file mode 100644
index 0000000..26d2b80
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/lib/nekohtml-1.9.13.jar
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/lib/plexus-cipher-1.4.jar b/work/plugins/maven-plugin/WEB-INF/lib/plexus-cipher-1.4.jar
new file mode 100644
index 0000000..9227205
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/lib/plexus-cipher-1.4.jar
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/lib/plexus-classworlds-2.3.jar b/work/plugins/maven-plugin/WEB-INF/lib/plexus-classworlds-2.3.jar
new file mode 100644
index 0000000..7c65410
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/lib/plexus-classworlds-2.3.jar
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/lib/plexus-component-annotations-1.5.5.jar b/work/plugins/maven-plugin/WEB-INF/lib/plexus-component-annotations-1.5.5.jar
new file mode 100644
index 0000000..e4de16f
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/lib/plexus-component-annotations-1.5.5.jar
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/lib/plexus-interactivity-api-1.0-alpha-6.jar b/work/plugins/maven-plugin/WEB-INF/lib/plexus-interactivity-api-1.0-alpha-6.jar
new file mode 100644
index 0000000..cae5596
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/lib/plexus-interactivity-api-1.0-alpha-6.jar
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/lib/plexus-interpolation-1.14.jar b/work/plugins/maven-plugin/WEB-INF/lib/plexus-interpolation-1.14.jar
new file mode 100644
index 0000000..eee5c57
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/lib/plexus-interpolation-1.14.jar
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/lib/plexus-sec-dispatcher-1.3.jar b/work/plugins/maven-plugin/WEB-INF/lib/plexus-sec-dispatcher-1.3.jar
new file mode 100644
index 0000000..9dc9f64
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/lib/plexus-sec-dispatcher-1.3.jar
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/lib/plexus-utils-2.0.6.jar b/work/plugins/maven-plugin/WEB-INF/lib/plexus-utils-2.0.6.jar
new file mode 100644
index 0000000..25002a4
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/lib/plexus-utils-2.0.6.jar
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/lib/sisu-guice-2.9.1.jar b/work/plugins/maven-plugin/WEB-INF/lib/sisu-guice-2.9.1.jar
new file mode 100644
index 0000000..bae6c31
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/lib/sisu-guice-2.9.1.jar
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/lib/sisu-inject-bean-1.4.3.1.jar b/work/plugins/maven-plugin/WEB-INF/lib/sisu-inject-bean-1.4.3.1.jar
new file mode 100644
index 0000000..dab4cd8
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/lib/sisu-inject-bean-1.4.3.1.jar
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/lib/sisu-inject-plexus-1.4.3.1.jar b/work/plugins/maven-plugin/WEB-INF/lib/sisu-inject-plexus-1.4.3.1.jar
new file mode 100644
index 0000000..9c5283d
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/lib/sisu-inject-plexus-1.4.3.1.jar
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/lib/slide-webdavlib-2.1.jar b/work/plugins/maven-plugin/WEB-INF/lib/slide-webdavlib-2.1.jar
new file mode 100644
index 0000000..f20f1c4
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/lib/slide-webdavlib-2.1.jar
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/lib/wagon-file-1.0-beta-7.jar b/work/plugins/maven-plugin/WEB-INF/lib/wagon-file-1.0-beta-7.jar
new file mode 100644
index 0000000..2e59d4b
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/lib/wagon-file-1.0-beta-7.jar
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/lib/wagon-ftp-1.0-beta-7.jar b/work/plugins/maven-plugin/WEB-INF/lib/wagon-ftp-1.0-beta-7.jar
new file mode 100644
index 0000000..5bb8c32
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/lib/wagon-ftp-1.0-beta-7.jar
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/lib/wagon-http-lightweight-1.0-beta-7.jar b/work/plugins/maven-plugin/WEB-INF/lib/wagon-http-lightweight-1.0-beta-7.jar
new file mode 100644
index 0000000..2aca330
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/lib/wagon-http-lightweight-1.0-beta-7.jar
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/lib/wagon-http-shared-1.0-beta-7.jar b/work/plugins/maven-plugin/WEB-INF/lib/wagon-http-shared-1.0-beta-7.jar
new file mode 100644
index 0000000..4321708
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/lib/wagon-http-shared-1.0-beta-7.jar
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/lib/wagon-provider-api-1.0-beta-7.jar b/work/plugins/maven-plugin/WEB-INF/lib/wagon-provider-api-1.0-beta-7.jar
new file mode 100644
index 0000000..052b265
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/lib/wagon-provider-api-1.0-beta-7.jar
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/lib/wagon-ssh-1.0-beta-7.jar b/work/plugins/maven-plugin/WEB-INF/lib/wagon-ssh-1.0-beta-7.jar
new file mode 100644
index 0000000..13589ea
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/lib/wagon-ssh-1.0-beta-7.jar
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/lib/wagon-ssh-common-1.0-beta-7.jar b/work/plugins/maven-plugin/WEB-INF/lib/wagon-ssh-common-1.0-beta-7.jar
new file mode 100644
index 0000000..3f5b205
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/lib/wagon-ssh-common-1.0-beta-7.jar
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/lib/wagon-ssh-external-1.0-beta-7.jar b/work/plugins/maven-plugin/WEB-INF/lib/wagon-ssh-external-1.0-beta-7.jar
new file mode 100644
index 0000000..f87a849
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/lib/wagon-ssh-external-1.0-beta-7.jar
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/lib/wagon-webdav-1.0-beta-2-hudson-1.jar b/work/plugins/maven-plugin/WEB-INF/lib/wagon-webdav-1.0-beta-2-hudson-1.jar
new file mode 100644
index 0000000..d133e35
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/lib/wagon-webdav-1.0-beta-2-hudson-1.jar
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/lib/xercesImpl-2.9.1.jar b/work/plugins/maven-plugin/WEB-INF/lib/xercesImpl-2.9.1.jar
new file mode 100644
index 0000000..547f563
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/lib/xercesImpl-2.9.1.jar
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/lib/xml-apis-1.3.04.jar b/work/plugins/maven-plugin/WEB-INF/lib/xml-apis-1.3.04.jar
new file mode 100644
index 0000000..d42c0ea
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/lib/xml-apis-1.3.04.jar
Binary files differ
diff --git a/work/plugins/maven-plugin/WEB-INF/lib/xml-im-exporter-1.1.jar b/work/plugins/maven-plugin/WEB-INF/lib/xml-im-exporter-1.1.jar
new file mode 100644
index 0000000..66bf3d8
--- /dev/null
+++ b/work/plugins/maven-plugin/WEB-INF/lib/xml-im-exporter-1.1.jar
Binary files differ
diff --git a/work/plugins/maven-plugin/aggregator.html b/work/plugins/maven-plugin/aggregator.html
new file mode 100644
index 0000000..99e1365
--- /dev/null
+++ b/work/plugins/maven-plugin/aggregator.html
@@ -0,0 +1,20 @@
+
+
+ If checked, Jenkins will run individual module builds as separate builds. On a project
+ with a large number of modules, or on a project where modules take a long time to build,
+ setting this option to true may speed up the whole build, as different modules can be built
+ in parallel.
+
+
+ Otherwise, leave it unchecked and Jenkins will build this maven project like you'd normally
+ do from command line.
+
+
+ When your build uses "aggregator-style" multi-module aware mojos, you'd have to leave this
+ option unchecked so that the mojo will have access to all of your modules.
+
+
+ Historically, this has been the default mode of the native maven project up until Jenkins 1.133.
+ So if your project was created before that, you might want to uncheck this.
+
+
\ No newline at end of file
diff --git a/work/plugins/maven-plugin/aggregator_de.html b/work/plugins/maven-plugin/aggregator_de.html
new file mode 100644
index 0000000..d05fe94
--- /dev/null
+++ b/work/plugins/maven-plugin/aggregator_de.html
@@ -0,0 +1,18 @@
+
+
+ Wenn angewählt, baut Jenkins jedes einzelne Modul in einem getrennten Build.
+ Für Projekte mit einer großen Anzahl an Modulen oder mit Modulen, deren Builds
+ sehr lange dauern, kann diese Option die Gesamtdauer des Builds verkürzen,
+ da Module parallelisiert gebaut werden können.
+
+ Wenn abgewählt, baut Jenkins dieses Maven-Projekt genau so, wie Sie es
+ normalerweise aus der Kommandozeile heraus durchführen würden.
+
+ Wenn Ihr Build "Aggregator"-artige Mojos mit Multimodul-Unterstützung verwendet,
+ sollten Sie diese Option abwählen, damit diese Mojos Zugriff auf alle
+ Module haben.
+
+ Diese Option war bis Jenkins 1.133 per Vorgabe angewählt. Wenn Sie Ihr
+ Projekt also vor dieser Version eingerichtet haben, sollten Sie diese Option
+ eventuell abwählen.
+
\ No newline at end of file
diff --git a/work/plugins/maven-plugin/aggregator_fr.html b/work/plugins/maven-plugin/aggregator_fr.html
new file mode 100644
index 0000000..3222121
--- /dev/null
+++ b/work/plugins/maven-plugin/aggregator_fr.html
@@ -0,0 +1,23 @@
+
\ No newline at end of file
diff --git a/work/plugins/maven-plugin/aggregator_ja.html b/work/plugins/maven-plugin/aggregator_ja.html
new file mode 100644
index 0000000..6ea9c1f
--- /dev/null
+++ b/work/plugins/maven-plugin/aggregator_ja.html
@@ -0,0 +1,15 @@
+
\ No newline at end of file
diff --git a/work/plugins/maven-plugin/aggregator_pt_BR.html b/work/plugins/maven-plugin/aggregator_pt_BR.html
new file mode 100644
index 0000000..edd4937
--- /dev/null
+++ b/work/plugins/maven-plugin/aggregator_pt_BR.html
@@ -0,0 +1,20 @@
+
+
+ Se marcada, o Jenkins executará as construções de módulo individual como construções separadas. Em um projeto
+ com um grande número de módulos, ou em um projeto onde os módulo levam muito tempo para construir,
+ marcar esta opção pode acelerar a construção toda, assim módulos diferentes podem ser construídos
+ em paralelo.
+
+
+ Caso contrário, deixe desmarcada e o Jenkins construirá este projeto maven como você faria normalmente
+ pela linha de comando.
+
+
+ Quando sua construção usa os mojos no "estilo-agregador" multi-módulo, você teria que deixar esta
+ opção desmarcada assim o mojo terá acesso a todos os seus módulos.
+
+
+ Históricamente, este tem sido o módo padrão do projeto maven nativo até o Jenkins 1.133.
+ Assim se seu projeto foi criado antes disso, você poderia querer desmarcar esta opção.
+
+
diff --git a/work/plugins/maven-plugin/aggregator_ru.html b/work/plugins/maven-plugin/aggregator_ru.html
new file mode 100644
index 0000000..e8ece90
--- /dev/null
+++ b/work/plugins/maven-plugin/aggregator_ru.html
@@ -0,0 +1,20 @@
+
\ No newline at end of file
diff --git a/work/plugins/maven-plugin/aggregator_tr.html b/work/plugins/maven-plugin/aggregator_tr.html
new file mode 100644
index 0000000..7451475
--- /dev/null
+++ b/work/plugins/maven-plugin/aggregator_tr.html
@@ -0,0 +1,19 @@
+
+
+ Seçili ise, Jenkins bireysel modülleri ayrı yapılandırmalar olarak çalıştıracaktır.
+ Çok sayıda modüle sahip projelerde, veya modülleri uzun süren yapılandırmalarda, bu seçenek "doğru"
+ olarak seçildiğinde modüllerin paralel çalışması sağlanarak, tüm yapılandırma işlemi hızlandırılabilir.
+
+
+ Aksi takdirde, seçili değil halde bırakırsanız, Jenkins bu maven projelerini sizin normalde
+ komut satırından yaptığınız şekilde çalıştıracaktır.
+
+
+ Eğer yapılandırmanız "aggregator-stili" çoklu-modülün farkında mojolar (ne demekse) kullanıyorsa,
+ bu kısmı seçili değil halde bırakmanız gerekir ki mojo tüm modüllerinize erişebilsin.
+
+
+ Geçmişe baktığımızda, bu, Jenkins 1.133'e kadar doğal maven projelerinin varsayılan modu idi.
+ Yani, eğer projeniz bundan önce yapıldı ise, bu kısmı seçili değil olarak bırakmak isteyebilirsiniz.
+
+
\ No newline at end of file
diff --git a/work/plugins/maven-plugin/alternate-settings.html b/work/plugins/maven-plugin/alternate-settings.html
new file mode 100644
index 0000000..c373360
--- /dev/null
+++ b/work/plugins/maven-plugin/alternate-settings.html
@@ -0,0 +1,10 @@
+
+
+ Specifies a path to an alternate settings.xml file for Maven. This
+ is equivalent to the -s or --settings options on the Maven command
+ line.
+
+
+ This path is relative to the workspace root.
+
+
diff --git a/work/plugins/maven-plugin/alternate-settings_de.html b/work/plugins/maven-plugin/alternate-settings_de.html
new file mode 100644
index 0000000..7a34dd0
--- /dev/null
+++ b/work/plugins/maven-plugin/alternate-settings_de.html
@@ -0,0 +1,10 @@
+
+
+ Gibt den Pfad zu einer alternativen Settings-Datei für Maven an.
+ Dies entspricht der Option -s bzw. --settings
+ der Maven-Kommandozeile.
+
+
+ Der Pfad ist relativ zum Stammverzeichnis des Arbeitsbereiches.
+
+
diff --git a/work/plugins/maven-plugin/alternate-settings_ja.html b/work/plugins/maven-plugin/alternate-settings_ja.html
new file mode 100644
index 0000000..65e96f9
--- /dev/null
+++ b/work/plugins/maven-plugin/alternate-settings_ja.html
@@ -0,0 +1,8 @@
+
diff --git a/work/plugins/maven-plugin/archivingDisabled.html b/work/plugins/maven-plugin/archivingDisabled.html
new file mode 100644
index 0000000..3377475
--- /dev/null
+++ b/work/plugins/maven-plugin/archivingDisabled.html
@@ -0,0 +1,6 @@
+
+ If checked, Hudson will not automatically archive all artifacts
+ generated by this project. If you wish to archive the results of
+ this build within Hudson, you will need to use the "Archive the
+ Artifacts" post-build option below.
+
\ No newline at end of file
diff --git a/work/plugins/maven-plugin/archivingDisabled_de.html b/work/plugins/maven-plugin/archivingDisabled_de.html
new file mode 100644
index 0000000..73b26a0
--- /dev/null
+++ b/work/plugins/maven-plugin/archivingDisabled_de.html
@@ -0,0 +1,6 @@
+
+ Wenn angewählt, wird Hudson Buildartefakte dieses Projekts nicht
+ mehr automatisch archivieren. Wenn Sie trotzdem gezielt einzelne Ergebnisse
+ eines Builds innerhalb von Hudson archivieren möchten, verwenden Sie
+ die Option "Artefakte archivieren" in den Post-Build-Aktionen weiter unten.
+
\ No newline at end of file
diff --git a/work/plugins/maven-plugin/archivingDisabled_ja.html b/work/plugins/maven-plugin/archivingDisabled_ja.html
new file mode 100644
index 0000000..4b95261
--- /dev/null
+++ b/work/plugins/maven-plugin/archivingDisabled_ja.html
@@ -0,0 +1,4 @@
+
\ No newline at end of file
diff --git a/work/plugins/maven-plugin/goals.html b/work/plugins/maven-plugin/goals.html
new file mode 100644
index 0000000..8b57cb5
--- /dev/null
+++ b/work/plugins/maven-plugin/goals.html
@@ -0,0 +1,5 @@
+
+ Specifies the goals to execute, such as "clean install" or "deploy".
+ This field can also accept any other command line options to Maven,
+ such as "-e" or "-Dmaven.test.skip=true".
+
\ No newline at end of file
diff --git a/work/plugins/maven-plugin/goals_de.html b/work/plugins/maven-plugin/goals_de.html
new file mode 100644
index 0000000..bfe0aba
--- /dev/null
+++ b/work/plugins/maven-plugin/goals_de.html
@@ -0,0 +1,6 @@
+
+ Geben Sie hier die Ziele (goals) an, die ausgeführt werden sollen,
+ z.B. "clean install" oder "deploy". Dieses Feld akzeptiert
+ auch alle weiteren Maven-Kommandozeilenoptionen wie beispielsweise
+ "-e" oder "-Dmaven.test.skip=true".
+
\ No newline at end of file
diff --git a/work/plugins/maven-plugin/goals_fr.html b/work/plugins/maven-plugin/goals_fr.html
new file mode 100644
index 0000000..6f01627
--- /dev/null
+++ b/work/plugins/maven-plugin/goals_fr.html
@@ -0,0 +1,5 @@
+
\ No newline at end of file
diff --git a/work/plugins/maven-plugin/goals_ja.html b/work/plugins/maven-plugin/goals_ja.html
new file mode 100644
index 0000000..ac92216
--- /dev/null
+++ b/work/plugins/maven-plugin/goals_ja.html
@@ -0,0 +1,4 @@
+
\ No newline at end of file
diff --git a/work/plugins/maven-plugin/goals_pt_BR.html b/work/plugins/maven-plugin/goals_pt_BR.html
new file mode 100644
index 0000000..8a4c42b
--- /dev/null
+++ b/work/plugins/maven-plugin/goals_pt_BR.html
@@ -0,0 +1,5 @@
+
+ Especifica os objetivos para executar, tal como "clean install" ou "deploy".
+ Este campo também pode aceitar outras opções de linha de comando do Maven,
+ tal como "-e" ou "-Dmaven.test.skip=true".
+
diff --git a/work/plugins/maven-plugin/goals_ru.html b/work/plugins/maven-plugin/goals_ru.html
new file mode 100644
index 0000000..a52efab
--- /dev/null
+++ b/work/plugins/maven-plugin/goals_ru.html
@@ -0,0 +1,5 @@
+
\ No newline at end of file
diff --git a/work/plugins/maven-plugin/goals_tr.html b/work/plugins/maven-plugin/goals_tr.html
new file mode 100644
index 0000000..931b2b9
--- /dev/null
+++ b/work/plugins/maven-plugin/goals_tr.html
@@ -0,0 +1,5 @@
+
+ Çalıştırılacak maven hedeflerini belirlemeye yarar, ("clean install" veya "deploy" gibi).
+ Bu alanı, aynı zamanda Maven'a vereceğeniz diğer komut satırı seçenekleri için kullanabilirsiniz.
+ ("-e" veya "-Dmaven.test.skip=true" gibi)
+
\ No newline at end of file
diff --git a/work/plugins/maven-plugin/ignore-upstrem-changes.html b/work/plugins/maven-plugin/ignore-upstrem-changes.html
new file mode 100644
index 0000000..652dd8e
--- /dev/null
+++ b/work/plugins/maven-plugin/ignore-upstrem-changes.html
@@ -0,0 +1,14 @@
+
+ If checked, Jenkins will parse the POMs of this project, and see if any of its snapshot dependencies
+ are built on this Jenkins as well. If so, Jenkins will set up build dependency relationship so that
+ whenever the dependency job is built and a new SNAPSHOT jar is created, Jenkins will schedule a build
+ of this project.
+
+
+ This is convenient for automatically performing continuous integration. Jenkins will check the snapshot
+ dependencies from the <dependency> element in the POM, as well as <plugin>s and
+ <extension>s used in POMs.
+
+
+ If this behavior is problematic, uncheck this option.
+
\ No newline at end of file
diff --git a/work/plugins/maven-plugin/ignore-upstrem-changes_de.html b/work/plugins/maven-plugin/ignore-upstrem-changes_de.html
new file mode 100644
index 0000000..9b58927
--- /dev/null
+++ b/work/plugins/maven-plugin/ignore-upstrem-changes_de.html
@@ -0,0 +1,15 @@
+
+ Wenn angewählt, liest Jenkins die POM-Dateien dieses Projekts ein und überprüft,
+ ob SNAPSHOT-Abhängigkeiten dieses Projekts ebenfalls auf derselben Jenkins-Instanz gebaut werden.
+ Wenn ja, richtet Jenkins automatisch folgende Build-Abhängigkeit ein: Wann immer die
+ SNAPSHOT-Abhängigkeit neu gebaut wird und ein neue SNAPSHOT-Jar-Datei erzeugt wird, wird auch
+ dieses Projekt anschließend neu gebaut.
+
+
+ Jenkins findet SNAPSHOT-Abhängigkeiten durch Auswertung der POM-Elemente <dependency>,
+ <plugin> und <extension>.
+
+
+ Dies erlaubt auf sehr bequeme Weise, kontinuierliche Integration zu automatisieren.
+ Bei Problemen mit diesem Verhalten wählen Sie die Option ab.
+
\ No newline at end of file
diff --git a/work/plugins/maven-plugin/ignore-upstrem-changes_fr.html b/work/plugins/maven-plugin/ignore-upstrem-changes_fr.html
new file mode 100644
index 0000000..a9f34dd
--- /dev/null
+++ b/work/plugins/maven-plugin/ignore-upstrem-changes_fr.html
@@ -0,0 +1,17 @@
+
\ No newline at end of file
diff --git a/work/plugins/maven-plugin/ignore-upstrem-changes_ja.html b/work/plugins/maven-plugin/ignore-upstrem-changes_ja.html
new file mode 100644
index 0000000..0de009b
--- /dev/null
+++ b/work/plugins/maven-plugin/ignore-upstrem-changes_ja.html
@@ -0,0 +1,12 @@
+
diff --git a/work/plugins/maven-plugin/incremental.html b/work/plugins/maven-plugin/incremental.html
new file mode 100644
index 0000000..d3ce048
--- /dev/null
+++ b/work/plugins/maven-plugin/incremental.html
@@ -0,0 +1,15 @@
+
+
+ If checked, Jenkins will only build any modules with changes from SCM
+ and any modules which depend on those changed modules, using Maven's
+ "-amd -pl group1:artifact1,group1:artifact2" command-line
+ options. If the SCM reports no changes to any modules, however, all
+ modules will be
+ built. See http://docs.codehaus.org/display/MAVEN/Make+Like+Reactor+Mode
+ for more information on the Maven behavior this utilizes.
+
+
+ This functionality requires Maven 2.1 or later, and will not have
+ any impact if "Build modules in parallel" is selected.
+
+
diff --git a/work/plugins/maven-plugin/incremental_de.html b/work/plugins/maven-plugin/incremental_de.html
new file mode 100644
index 0000000..f76af13
--- /dev/null
+++ b/work/plugins/maven-plugin/incremental_de.html
@@ -0,0 +1,13 @@
+
+ Wenn angewählt, baut Jenkins nur Module mit SCM-Änderungen sowie diejenigen Module,
+ die von diesen geänderten Modulen abhängen. Jenkins verwendet dazu
+ Mavens Kommandozeilenoption "-amd -pl group1:artifact1,group1:artifact2".
+ Wenn das SCM-System hingegen in keinen Modulen Änderungen feststellt,
+ werden alle Module gebaut. Mehr zur diesem Maven-Verhalten finden Sie unter
+ http://docs.codehaus.org/display/MAVEN/Make+Like+Reactor+Mode.
+
+
+ Diese Funktion erfordert Maven 2.1 oder höher und wird ignoriert,
+ wenn "Baue Module parallel" angewählt ist.
+
+
diff --git a/work/plugins/maven-plugin/maven-opts.html b/work/plugins/maven-plugin/maven-opts.html
new file mode 100644
index 0000000..537ca62
--- /dev/null
+++ b/work/plugins/maven-plugin/maven-opts.html
@@ -0,0 +1,8 @@
+
+ Specify JVM options needed when launching Maven as an external process.
+ Also see MAVEN_OPTS documentation
+ (even though this is for Maven 1.x it still applies to Maven 2.x)
+
+
+ Shell-like environment variable expansions work in this field, by using the ${VARIABLE} syntax.
+
\ No newline at end of file
diff --git a/work/plugins/maven-plugin/maven-opts_de.html b/work/plugins/maven-plugin/maven-opts_de.html
new file mode 100644
index 0000000..085e4fe
--- /dev/null
+++ b/work/plugins/maven-plugin/maven-opts_de.html
@@ -0,0 +1,9 @@
+
+ Geben Sie die JVM-Optionen an, die für den Aufruf von Maven als externen
+ Prozess benötigt werden.
+ Mehr dazu in der Dokumentation der MAVEN_OPTS (auf Englisch)
+ - die dort dokumentierten Optionen für Maven 1.x treffen auch für Maven 2.x zu.
+
+ Dieses Feld unterstützt die Expansion von Umgebungsvariablen - ähnlich der
+ Verwendung in einer Shell - mittels der Syntax ${VARIABLE}.
+
\ No newline at end of file
diff --git a/work/plugins/maven-plugin/maven-opts_fr.html b/work/plugins/maven-plugin/maven-opts_fr.html
new file mode 100644
index 0000000..5b4a4f6
--- /dev/null
+++ b/work/plugins/maven-plugin/maven-opts_fr.html
@@ -0,0 +1,11 @@
+
+ Les expansions de variables à la Shell sont valables dans ce champ,
+ avec une syntaxe du type ${VARIABLE}.
+
\ No newline at end of file
diff --git a/work/plugins/maven-plugin/maven-opts_ja.html b/work/plugins/maven-plugin/maven-opts_ja.html
new file mode 100644
index 0000000..ce0e65c
--- /dev/null
+++ b/work/plugins/maven-plugin/maven-opts_ja.html
@@ -0,0 +1,8 @@
+
\ No newline at end of file
diff --git a/work/plugins/maven-plugin/maven-opts_pt_BR.html b/work/plugins/maven-plugin/maven-opts_pt_BR.html
new file mode 100644
index 0000000..dfa52c5
--- /dev/null
+++ b/work/plugins/maven-plugin/maven-opts_pt_BR.html
@@ -0,0 +1,8 @@
+
+ Especifica as opções de JVM necessárias quando lançando o Maven como um processo externo.
+ Veja também a documentação MAVEN_OPTS
+ (embora isto seja para Maven 1.x ainda se aplica ao Maven 2.x)
+
+
+ Expansões de variáveis de ambiente de Shell funcionam neste campo, usando a sintáxe ${VARIABLE}.
+
diff --git a/work/plugins/maven-plugin/maven-opts_ru.html b/work/plugins/maven-plugin/maven-opts_ru.html
new file mode 100644
index 0000000..5a42028
--- /dev/null
+++ b/work/plugins/maven-plugin/maven-opts_ru.html
@@ -0,0 +1,8 @@
+
\ No newline at end of file
diff --git a/work/plugins/maven-plugin/maven-opts_tr.html b/work/plugins/maven-plugin/maven-opts_tr.html
new file mode 100644
index 0000000..e93e4cb
--- /dev/null
+++ b/work/plugins/maven-plugin/maven-opts_tr.html
@@ -0,0 +1,8 @@
+
+ Maven'ı harici bir işlem olarak çağıracaksanız, JVM seçeneklerini belirleyiniz.
+ Bu linke göz atmanızda fayda var MAVEN_OPTS dokümantasyonu
+ (Her ne kadar Maven 1.x için olsa da Maven 2.x için de geçerlidir)
+
+
+ Shell-benzeri ortam değişkenleri ${VARIABLE} sentaksı kullanarak bu alanda kullanılabilir.
+
\ No newline at end of file
diff --git a/work/plugins/maven-plugin/maven-opts_zh_CN.html b/work/plugins/maven-plugin/maven-opts_zh_CN.html
new file mode 100644
index 0000000..df03f21
--- /dev/null
+++ b/work/plugins/maven-plugin/maven-opts_zh_CN.html
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/work/plugins/maven-plugin/module-goals.html b/work/plugins/maven-plugin/module-goals.html
new file mode 100644
index 0000000..0af3a57
--- /dev/null
+++ b/work/plugins/maven-plugin/module-goals.html
@@ -0,0 +1,6 @@
+
+ By default (or if this field is left as-is or empty), all modules
+ build the same goals/phases specified in
+ the parent's configuration, but you can
+ override it on modules by specifying a different value here.
+
\ No newline at end of file
diff --git a/work/plugins/maven-plugin/module-goals_de.html b/work/plugins/maven-plugin/module-goals_de.html
new file mode 100644
index 0000000..8ac20ad
--- /dev/null
+++ b/work/plugins/maven-plugin/module-goals_de.html
@@ -0,0 +1,7 @@
+
+ Per Vorgabe (oder wenn dieses Feld unverändert oder leer bleibt), bauen
+ alle Module dieselben Ziele (goals) und Phasen (phases), die in der
+ Konfiguration des Elters angegeben wurden.
+ Sie können jedoch diese Einstellung überschreiben, indem Sie hier
+ einen abweichenden Wert eingeben.
+
\ No newline at end of file
diff --git a/work/plugins/maven-plugin/module-goals_fr.html b/work/plugins/maven-plugin/module-goals_fr.html
new file mode 100644
index 0000000..bfac54c
--- /dev/null
+++ b/work/plugins/maven-plugin/module-goals_fr.html
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/work/plugins/maven-plugin/module-goals_ja.html b/work/plugins/maven-plugin/module-goals_ja.html
new file mode 100644
index 0000000..e9c8bde
--- /dev/null
+++ b/work/plugins/maven-plugin/module-goals_ja.html
@@ -0,0 +1,5 @@
+
\ No newline at end of file
diff --git a/work/plugins/maven-plugin/module-goals_pt_BR.html b/work/plugins/maven-plugin/module-goals_pt_BR.html
new file mode 100644
index 0000000..071cdb1
--- /dev/null
+++ b/work/plugins/maven-plugin/module-goals_pt_BR.html
@@ -0,0 +1,6 @@
+
+ Por padrão (ou se este campo for deixado como está ou vazio), todos os módulos
+ constróem os mesmos objetivos/fases especificados na
+ configuração pai, mas você pode
+ sobrescrever-la nos módulos especificando um valor diferente aqui.
+
diff --git a/work/plugins/maven-plugin/module-goals_ru.html b/work/plugins/maven-plugin/module-goals_ru.html
new file mode 100644
index 0000000..9e573ed
--- /dev/null
+++ b/work/plugins/maven-plugin/module-goals_ru.html
@@ -0,0 +1,5 @@
+
\ No newline at end of file
diff --git a/work/plugins/maven-plugin/module-goals_tr.html b/work/plugins/maven-plugin/module-goals_tr.html
new file mode 100644
index 0000000..74c859c
--- /dev/null
+++ b/work/plugins/maven-plugin/module-goals_tr.html
@@ -0,0 +1,6 @@
+
+ Varsayılan değer olarak (bu alan olduğu gibi bırakılırsa, veya boşaltılırsa), tüm modüller
+ the parent's configuration içerisinde
+ belirtilen hedefleri/fazları yapılandıracaktır. Fakat
+ buraya modüller için farklı değerler girerek, davranışını değiştirebilirsiniz.
+
\ No newline at end of file
diff --git a/work/plugins/maven-plugin/private-repository.html b/work/plugins/maven-plugin/private-repository.html
new file mode 100644
index 0000000..1eb5162
--- /dev/null
+++ b/work/plugins/maven-plugin/private-repository.html
@@ -0,0 +1,30 @@
+
+ Normally, Jenkins uses the local Maven repository as determined by Maven — the exact process
+ seems to be undocumented, but it's ~/.m2/repository and can be overridden by
+ <localRepository> in ~/.m2/settings.xml (see the reference for more details.)
+
+
+ This normally means that all the jobs that are executed on the same node shares a single Maven repository.
+ The upside of this is that you can save the disk space, but the downside of this is that sometimes those
+ builds could interfere with each other. For example, you might end up having builds incorrectly succeed,
+ just because your have all the dependencies in your local repository, despite that fact that none of the
+ repositories in POM might have them.
+
+
+ There are also some reported problems regarding having concurrent Maven processes trying to use the same local
+ repository.
+
+
+
+ When this option is checked, Jenkins will tell Maven to use $WORKSPACE/.repository as the local Maven repository.
+ This means each job will get its own isolated Maven repository just for itself. It fixes the above problems,
+ at the expense of additional disk space consumption.
+
+
+ When using this option, consider setting up a Maven artifact manager so that you don't have to hit
+ remote Maven repositories too often.
+
+
+ If you'd prefer to activate this mode in all the Maven jobs executed on Jenkins, refer to the technique described
+ here.
+
diff --git a/work/plugins/maven-plugin/private-repository_de.html b/work/plugins/maven-plugin/private-repository_de.html
new file mode 100644
index 0000000..2dff757
--- /dev/null
+++ b/work/plugins/maven-plugin/private-repository_de.html
@@ -0,0 +1,30 @@
+
+ Normalerweise verwendet Jenkins das lokale Maven-Repository so wie es von Maven
+ bestimmt wird — das exakte Verfahren dafür scheint undokumentiert, aber es ist typischerweise
+ ~/.m2/repository und kann durch <localRepository> in ~/.m2/settings.xml
+ überschrieben werden (mehr dazu in der Maven Dokumentation).
+
+
+ Dies bedeutet, dass sich alle Jobs, die auf dem gleichen Knoten ausgeführt werden, ein gemeinsames
+ Maven-Repository teilen. Der Vorteil dabei ist, dass dadurch Festplattenplatz gespart werden kann.
+ Nachteilig ist hingegen, dass diese Jobs sich manchmal in die Quere kommen können.
+ Beispielsweise können so Builds fälschlicherweise erfolgreich sein, weil zwar alle Abhängigkeiten im lokalen
+ Repository vorhanden sind, aber keine davon in den Repositories des POMs existiert.
+
+
+ Es liegen außerdem Problemberichte über nebenläufige Maven-Prozesse vor, die versuchen,
+ dasselbe lokale Repository zu verwenden.
+
+
+ Wenn diese Option angewählt ist, startet Jenkins Maven mit $WORKSPACE/.repository
+ als lokalem Maven-Repository. Dadurch verwendet jeder Job ein eigenes, isoliertes Maven-Repository.
+ Dies löst die oben angesprochenen Probleme auf Kosten eines höheren Speicherplatzbedarfs auf der Festplatte.
+
+
+ Wenn Sie diese Option verwenden, ziehen Sie die Installation eines Maven-Artefakt-Managers
+ in Betracht: Dadurch vermeiden Sie zu häufige Zugriffe auf entfernte Maven-Repositories.
+
+
+ Möchten Sie diese Option in allen Maven-Jobs aktivieren, die über Jenkins ausgeführt
+ werden, folgen Sie den Anweisungen hier.
+
diff --git a/work/plugins/maven-plugin/private-repository_fr.html b/work/plugins/maven-plugin/private-repository_fr.html
new file mode 100644
index 0000000..20e09a8
--- /dev/null
+++ b/work/plugins/maven-plugin/private-repository_fr.html
@@ -0,0 +1,33 @@
+
diff --git a/work/plugins/maven-plugin/private-repository_tr.html b/work/plugins/maven-plugin/private-repository_tr.html
new file mode 100644
index 0000000..1eb5162
--- /dev/null
+++ b/work/plugins/maven-plugin/private-repository_tr.html
@@ -0,0 +1,30 @@
+
+ Normally, Jenkins uses the local Maven repository as determined by Maven — the exact process
+ seems to be undocumented, but it's ~/.m2/repository and can be overridden by
+ <localRepository> in ~/.m2/settings.xml (see the reference for more details.)
+
+
+ This normally means that all the jobs that are executed on the same node shares a single Maven repository.
+ The upside of this is that you can save the disk space, but the downside of this is that sometimes those
+ builds could interfere with each other. For example, you might end up having builds incorrectly succeed,
+ just because your have all the dependencies in your local repository, despite that fact that none of the
+ repositories in POM might have them.
+
+
+ There are also some reported problems regarding having concurrent Maven processes trying to use the same local
+ repository.
+
+
+
+ When this option is checked, Jenkins will tell Maven to use $WORKSPACE/.repository as the local Maven repository.
+ This means each job will get its own isolated Maven repository just for itself. It fixes the above problems,
+ at the expense of additional disk space consumption.
+
+
+ When using this option, consider setting up a Maven artifact manager so that you don't have to hit
+ remote Maven repositories too often.
+
+
+ If you'd prefer to activate this mode in all the Maven jobs executed on Jenkins, refer to the technique described
+ here.
+
diff --git a/work/plugins/maven-plugin/root-pom.html b/work/plugins/maven-plugin/root-pom.html
new file mode 100644
index 0000000..2dd9ee2
--- /dev/null
+++ b/work/plugins/maven-plugin/root-pom.html
@@ -0,0 +1,7 @@
+
+ If your workspace has the top-level pom.xml in somewhere other
+ than the module root directory, specify the path (relative to
+ the module root) here, such as parent/pom.xml.
+
+ If left empty, defaults to pom.xml
+
\ No newline at end of file
diff --git a/work/plugins/maven-plugin/root-pom_de.html b/work/plugins/maven-plugin/root-pom_de.html
new file mode 100644
index 0000000..130ef5e
--- /dev/null
+++ b/work/plugins/maven-plugin/root-pom_de.html
@@ -0,0 +1,9 @@
+
+
+ Wenn in Ihrem Arbeitsbereich die oberste pom.xml-Datei nicht direkt
+ im Stammverzeichnis des Arbeitsbereiches liegt, geben Sie
+ hier den Pfad (relativ zum Stammverzeichnis des Arbeitsbereiches) an,
+ z.B. parent/pom.xml.
+
+ Wenn das Feld leer bleibt, wird als Vorgabewert pom.xml verwendet.
+
\ No newline at end of file
diff --git a/work/plugins/maven-plugin/root-pom_fr.html b/work/plugins/maven-plugin/root-pom_fr.html
new file mode 100644
index 0000000..c0f8dd7
--- /dev/null
+++ b/work/plugins/maven-plugin/root-pom_fr.html
@@ -0,0 +1,9 @@
+
\ No newline at end of file
diff --git a/work/plugins/maven-plugin/root-pom_ja.html b/work/plugins/maven-plugin/root-pom_ja.html
new file mode 100644
index 0000000..959ffbe
--- /dev/null
+++ b/work/plugins/maven-plugin/root-pom_ja.html
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/work/plugins/maven-plugin/root-pom_pt_BR.html b/work/plugins/maven-plugin/root-pom_pt_BR.html
new file mode 100644
index 0000000..f7af4c9
--- /dev/null
+++ b/work/plugins/maven-plugin/root-pom_pt_BR.html
@@ -0,0 +1,8 @@
+
+
+ Se seu workspace tem um pom.xml de alto-nível em algum outro lugar
+ que não seja o diretório raíz do workspace, especifique o caminho (relativo à
+ raíz do workspace) aqui, tal como pai/pom.xml.
+
+ Se deixado em branco, o padrão é pom.xml
+
diff --git a/work/plugins/maven-plugin/root-pom_ru.html b/work/plugins/maven-plugin/root-pom_ru.html
new file mode 100644
index 0000000..326c37d
--- /dev/null
+++ b/work/plugins/maven-plugin/root-pom_ru.html
@@ -0,0 +1,8 @@
+
\ No newline at end of file
diff --git a/work/plugins/maven-plugin/root-pom_tr.html b/work/plugins/maven-plugin/root-pom_tr.html
new file mode 100644
index 0000000..713f369
--- /dev/null
+++ b/work/plugins/maven-plugin/root-pom_tr.html
@@ -0,0 +1,8 @@
+
+
+ Eğer çalışma ortamında, kök dizinin dışında, üst-seviye bir pom.xml
+ varsa, yolunu parent/pom.xml gibi (çalışma alanı kök dizinine bağlı olarak)
+ belirlemeniz gerekir.
+
+ Eğer boş bırakılırsa, varsayılan değer olan pom.xml kullanılır.
+
\ No newline at end of file
diff --git a/work/plugins/ssh-slaves.hpi b/work/plugins/ssh-slaves.hpi
new file mode 100644
index 0000000..e1692c8
--- /dev/null
+++ b/work/plugins/ssh-slaves.hpi
Binary files differ
diff --git a/work/plugins/ssh-slaves/.timestamp b/work/plugins/ssh-slaves/.timestamp
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/work/plugins/ssh-slaves/.timestamp
diff --git a/work/plugins/ssh-slaves/META-INF/MANIFEST.MF b/work/plugins/ssh-slaves/META-INF/MANIFEST.MF
new file mode 100644
index 0000000..96e4cdd
--- /dev/null
+++ b/work/plugins/ssh-slaves/META-INF/MANIFEST.MF
@@ -0,0 +1,18 @@
+Manifest-Version: 1.0
+Archiver-Version: Plexus Archiver
+Created-By: Apache Maven
+Built-By: olamy
+Build-Jdk: 1.6.0_21
+Extension-Name: ssh-slaves
+Implementation-Title: ssh-slaves
+Implementation-Version: 0.15
+Plugin-Class: hudson.plugins.sshslaves.PluginImpl
+Group-Id: org.jenkins-ci.plugins
+Short-Name: ssh-slaves
+Long-Name: Jenkins SSH Slaves plugin
+Url: http://wiki.jenkins-ci.org/display/JENKINS/SSH+Slaves+plugin
+Plugin-Version: 0.15
+Hudson-Version: 1.403
+Jenkins-Version: 1.403
+Plugin-Developers: Kohsuke Kawaguchi:kohsuke:,Olivier Lamy:olamy:
+
diff --git a/work/plugins/ssh-slaves/META-INF/maven/org.jenkins-ci.plugins/ssh-slaves/pom.properties b/work/plugins/ssh-slaves/META-INF/maven/org.jenkins-ci.plugins/ssh-slaves/pom.properties
new file mode 100644
index 0000000..7de47e5
--- /dev/null
+++ b/work/plugins/ssh-slaves/META-INF/maven/org.jenkins-ci.plugins/ssh-slaves/pom.properties
@@ -0,0 +1,5 @@
+#Generated by Maven
+#Sat Mar 26 23:37:35 CET 2011
+version=0.15
+groupId=org.jenkins-ci.plugins
+artifactId=ssh-slaves
diff --git a/work/plugins/ssh-slaves/META-INF/maven/org.jenkins-ci.plugins/ssh-slaves/pom.xml b/work/plugins/ssh-slaves/META-INF/maven/org.jenkins-ci.plugins/ssh-slaves/pom.xml
new file mode 100644
index 0000000..b9e73af
--- /dev/null
+++ b/work/plugins/ssh-slaves/META-INF/maven/org.jenkins-ci.plugins/ssh-slaves/pom.xml
@@ -0,0 +1,43 @@
+
+ 4.0.0
+
+
+ org.jenkins-ci.plugins
+ plugin
+ 1.403
+
+
+ ssh-slaves
+ hpi
+ 0.15
+ Jenkins SSH Slaves plugin
+ http://wiki.jenkins-ci.org/display/JENKINS/SSH+Slaves+plugin
+
+
+ scm:git:git://github.com/jenkinsci/ssh-slaves-plugin.git
+ scm:git:git@github.com:jenkinsci/ssh-slaves-plugin.git
+ https://github.com/jenkinsci/ssh-slaves-plugin
+
+
+
+
+ kohsuke
+ Kohsuke Kawaguchi
+
+
+ olamy
+ Olivier Lamy
+
+
+
+
+
+
+ org.apache.maven.plugins
+ maven-surefire-plugin
+ 2.8
+
+
+
+
+
diff --git a/work/plugins/ssh-slaves/WEB-INF/classes/META-INF/annotations/hudson.Extension b/work/plugins/ssh-slaves/WEB-INF/classes/META-INF/annotations/hudson.Extension
new file mode 100644
index 0000000..72d98cd
--- /dev/null
+++ b/work/plugins/ssh-slaves/WEB-INF/classes/META-INF/annotations/hudson.Extension
Binary files differ
diff --git a/work/plugins/ssh-slaves/WEB-INF/classes/META-INF/exposed.stapler-beans b/work/plugins/ssh-slaves/WEB-INF/classes/META-INF/exposed.stapler-beans
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/work/plugins/ssh-slaves/WEB-INF/classes/META-INF/exposed.stapler-beans
diff --git a/work/plugins/ssh-slaves/WEB-INF/classes/META-INF/services/hudson.Plugin b/work/plugins/ssh-slaves/WEB-INF/classes/META-INF/services/hudson.Plugin
new file mode 100644
index 0000000..41d330c
--- /dev/null
+++ b/work/plugins/ssh-slaves/WEB-INF/classes/META-INF/services/hudson.Plugin
@@ -0,0 +1 @@
+hudson.plugins.sshslaves.PluginImpl
\ No newline at end of file
diff --git a/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/JavaProvider.class b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/JavaProvider.class
new file mode 100644
index 0000000..c6f421f
--- /dev/null
+++ b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/JavaProvider.class
Binary files differ
diff --git a/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/Messages.class b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/Messages.class
new file mode 100644
index 0000000..1a2ac31
--- /dev/null
+++ b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/Messages.class
Binary files differ
diff --git a/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/Messages.properties b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/Messages.properties
new file mode 100644
index 0000000..b88c669
--- /dev/null
+++ b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/Messages.properties
@@ -0,0 +1,28 @@
+SSHLauncher.StartingSFTPClient={0} [SSH] Starting sftp client.
+SSHLauncher.RemoteFSDoesNotExist={0} [SSH] Remote file system root {1} does not exist. Will try to create it...
+SSHLauncher.RemoteFSIsAFile=Remote file system root {0} is a file not a directory or a symlink.
+SSHLauncher.CopyingSlaveJar={0} [SSH] Copying latest slave.jar...
+SSHLauncher.CopiedXXXBytes={0} [SSH] Copied {1} bytes.
+SSHLauncher.ErrorCopyingSlaveJar=Could not copy slave.jar to slave
+SSHLauncher.ErrorCopyingSlaveJarTo=Could not copy slave.jar to ''{0}'' on slave
+SSHLauncher.CheckingDefaultJava={0} [SSH] Checking java version of {1}
+SSHLauncher.ConnectionClosed={0} [SSH] Connection closed.
+SSHLauncher.ErrorWhileClosingConnection=Exception thrown while closing connection.
+SSHLauncher.AbortedDuringConnectionOpen=Slave start aborted.
+SSHLauncher.FailedToDetectEnvironment=Failed to detect the environment for automatic JDK installation. Please report this to jenkinsci-users@googlegroups.com: {0}
+SSHLauncher.NoJavaFound=Java version {0} was found but 1.5 or later is needed.
+SSHLauncher.JavaVersionResult={0} [SSH] {1} -version returned {2}.
+SSHLauncher.OpeningSSHConnection={0} [SSH] Opening SSH connection to {1}.
+SSHLauncher.AuthenticatingPublicKey={0} [SSH] Authenticating as {1} with {2}.
+SSHLauncher.AuthenticatingUserPass={0} [SSH] Authenticating as {1}/{2}.
+SSHLauncher.AuthenticationSuccessful={0} [SSH] Authentication successful.
+SSHLauncher.AuthenticationFailed={0} [SSH] Authentication failed.
+SSHLauncher.AuthenticationFailedException=Authentication failed.
+SSHLauncher.ErrorDeletingFile={0} [SSH] Error deleting file.
+SSHLauncher.DescriptorDisplayName=Launch slave agents on Unix machines via SSH
+SSHLauncher.SSHHeeaderJunkDetected=SSH connection reports a garbage before a command execution.\nCheck your .bashrc, .profile, and so on to make sure it is quiet.\nThe received junk text is as follows:
+SSHLauncher.UknownJavaVersion=Couldn''t figure out the Java version of {0}
+SSHLauncher.UnexpectedError=Unexpected error in launching a slave. This is probably a bug in Jenkins.
+SSHLauncher.StartingSlaveProcess={0} [SSH] Starting slave process: {1}
+SSHLauncher.RemoteUserEnvironment={0} [SSH] The remote user's environment is:
+SSHLauncher.StartingSCPClient={0} [SSH] SFTP failed. Copying via SCP.
\ No newline at end of file
diff --git a/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/Messages_es.properties b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/Messages_es.properties
new file mode 100644
index 0000000..cb60e39
--- /dev/null
+++ b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/Messages_es.properties
@@ -0,0 +1,79 @@
+# The MIT License
+#
+# Copyright (c) 2004-2010, Sun Microsystems, Inc.
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+# {0} [SSH] Remote file system root {1} does not exist. Will try to create it...
+SSHLauncher.RemoteFSDoesNotExist={0} [SSH] Directorio raiz en el sistema remoto ({1}) no existe. Intentando crearlo ...
+# {0} [SSH] Authentication successful.
+SSHLauncher.AuthenticationSuccessful={0} [SSH] Autenticación válida
+# Could not copy slave.jar to slave
+SSHLauncher.ErrorCopyingSlaveJar=No se pudo copiar "slave.jar" al nodo remoto
+# {0} [SSH] Copied {1} bytes.
+SSHLauncher.CopiedXXXBytes={0} [SSH] Se copiaron {1} bytes.
+# Exception thrown while closing connection.
+SSHLauncher.ErrorWhileClosingConnection=Se produjo una excepción al cerrar la conexión
+# {0} [SSH] Copying latest slave.jar...
+SSHLauncher.CopyingSlaveJar={0} [SSH] Copiando el último slave.jar...
+# SSH connection reports a garbage before a command execution.\nCheck your .bashrc, .profile, and so on to make sure it is quiet.\nThe received junk text is as follows:
+SSHLauncher.SSHHeeaderJunkDetected=La conexión ha recibido texto antes de ejecutar el comando.\n\
+ Comprueba tus ficheros ".bashrc" o ".profile" para comprobar que no escriben nada al hacer 'login'.\n\
+ El texto recibido es:
+# {0} [SSH] Authentication failed.
+SSHLauncher.AuthenticationFailed={0} [SSH] Fallo en la autenticación.
+# {0} [SSH] Connection closed.
+SSHLauncher.ConnectionClosed={0} [SSH] Cerrada la conexión.
+# Failed to detect the environment for automatic JDK installation. Please report this to jenkinsci-users@googlegroups.com: {0}
+SSHLauncher.FailedToDetectEnvironment=Se ha detectado un fallo al intentar detectar el entorno para instalar java (JDK). \
+ Por favor envía un correo con el error a jenkinsci-users@googlegroups.com: {0}
+# {0} [SSH] Error deleting file.
+SSHLauncher.ErrorDeletingFile={0} [SSH] Error al borrar el fichero.
+# {0} [SSH] The remote user's environment is:
+SSHLauncher.RemoteUserEnvironment={0} [SSH] The entorno remoto del usuario es:
+# Couldn''t figure out the Java version of {0}
+SSHLauncher.UknownJavaVersion=Imposible de averiguar la versión de Java en {0}
+# Slave start aborted.
+SSHLauncher.AbortedDuringConnectionOpen=El inicio del nodo remoto ha sido abortado
+# {0} [SSH] Starting slave process: {1}
+SSHLauncher.StartingSlaveProcess={0} [SSH] Arrancando proceso en el nodo remoto: {1}
+# {0} [SSH] {1} -version returned {2}.
+SSHLauncher.JavaVersionResult={0} [SSH] {1} -version ha retornado {2}.
+# Unexpected error in launching a slave. This is probably a bug in Jenkins.
+SSHLauncher.UnexpectedError=Error inesperado al lanzar un nodo. Esto puede ser posiblemente un error (bug) de Jenkins
+# Authentication failed.
+SSHLauncher.AuthenticationFailedException=Autenticación fallida
+# Java version {0} was found but 1.5 or later is needed.
+SSHLauncher.NoJavaFound=Se encontró la versión de Java {0}, sin embargo se necesita la versión 1.5 o posterior
+# {0} [SSH] Starting sftp client.
+SSHLauncher.StartingSFTPClient={0} [SSH] Arrancando cliente de "sftp"
+# Remote file system root {0} is a file not a directory or a symlink.
+SSHLauncher.RemoteFSIsAFile=El systema de archivos remoto {0} es un fichero, no un directorio ni un link simbólico
+# Launch slave agents on Unix machines via SSH
+SSHLauncher.DescriptorDisplayName=Arrancar agentes remotos en máquinas Unix vía SSH
+# {0} [SSH] Authenticating as {1}/{2}.
+SSHLauncher.AuthenticatingUserPass={0} [SSH] Autenticándose como {1}/{2}.
+# {0} [SSH] Checking java version of {1}
+SSHLauncher.CheckingDefaultJava={0} [SSH] Comprobando la versión de java en {1}
+# {0} [SSH] Authenticating as {1} with {2}.
+SSHLauncher.AuthenticatingPublicKey={0} [SSH] Authenticándose como {1} con {2}.
+# {0} [SSH] Opening SSH connection to {1}.
+SSHLauncher.OpeningSSHConnection={0} [SSH] abriendo una conexión SSH sobre {1}.
+# Could not copy slave.jar to ''{0}'' on slave
+SSHLauncher.ErrorCopyingSlaveJarTo=Fué imposible copiar el archivo ''slave.jar'' a ''{0}'' en el nodo
diff --git a/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/Messages_ja.properties b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/Messages_ja.properties
new file mode 100644
index 0000000..b2d2398
--- /dev/null
+++ b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/Messages_ja.properties
@@ -0,0 +1,28 @@
+SSHLauncher.StartingSFTPClient={0} [SSH] sftp\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u306e\u958b\u59cb
+SSHLauncher.RemoteFSDoesNotExist={0} [SSH] \u30ea\u30e2\u30fc\u30c8FS\u30eb\u30fc\u30c8 {1} \u304c\u5b58\u5728\u3057\u306a\u3044\u306e\u3067\u3001\u4f5c\u6210\u3057\u307e\u3059...
+SSHLauncher.RemoteFSIsAFile=\u30ea\u30e2\u30fc\u30c8FS\u30eb\u30fc\u30c8 {1} \u304c\u3001\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3084\u30ea\u30f3\u30af\u3067\u306f\u306a\u304f\u30d5\u30a1\u30a4\u30eb\u3067\u3059\u3002
+SSHLauncher.CopyingSlaveJar={0} [SSH] \u6700\u65b0\u306eslave.jar\u3092\u30b3\u30d4\u30fc\u4e2d...
+SSHLauncher.CopiedXXXBytes={0} [SSH] {1} \u30d0\u30a4\u30c8\u30b3\u30d4\u30fc.
+SSHLauncher.ErrorCopyingSlaveJar=slave.jar\u3092\u30b9\u30ec\u30fc\u30d6\u306b\u30b3\u30d4\u30fc\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002
+SSHLauncher.ErrorCopyingSlaveJarTo=slave.jar\u3092\u30b9\u30ec\u30fc\u30d6\u306e ''{0}'' \u306b\u30b3\u30d4\u30fc\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002
+SSHLauncher.CheckingDefaultJava={0} [SSH] {1}\u306eJava\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u30c1\u30a7\u30c3\u30af
+SSHLauncher.ConnectionClosed={0} [SSH] \u30b3\u30cd\u30af\u30b7\u30e7\u30f3\u7d42\u4e86
+SSHLauncher.ErrorWhileClosingConnection=\u30b3\u30cd\u30af\u30b7\u30e7\u30f3\u7d42\u4e86\u4e2d\u306b\u4f8b\u5916\u304c\u767a\u751f
+SSHLauncher.AbortedDuringConnectionOpen=\u30b9\u30ec\u30fc\u30d6\u306e\u958b\u59cb\u3092\u4e2d\u6b62
+SSHLauncher.FailedToDetectEnvironment=JDK\u81ea\u52d5\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u306e\u74b0\u5883\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3002jenkinsci-users@googlegroups.com\u306b\u30ec\u30dd\u30fc\u30c8\u3057\u3066\u304f\u3060\u3055\u3044\u3002: {0}
+SSHLauncher.NoJavaFound=Java\u306e\u30d0\u30fc\u30b8\u30e7\u30f3 {0} \u304c\u898b\u3064\u304b\u308a\u307e\u3057\u305f\u304c\u30011.5\u4ee5\u964d\u304c\u5fc5\u8981\u3067\u3059\u3002
+SSHLauncher.JavaVersionResult={0} [SSH] {1} -version returned {2}.
+SSHLauncher.OpeningSSHConnection={0} [SSH] {1}\u3068\u306eSSH\u30b3\u30cd\u30af\u30b7\u30e7\u30f3\u3092\u30aa\u30fc\u30d7\u30f3
+SSHLauncher.AuthenticatingPublicKey={0} [SSH] {2}\u3092\u4f7f\u7528\u3057\u3066\u3001{1}\u3092\u8a8d\u8a3c
+SSHLauncher.AuthenticatingUserPass={0} [SSH] {1}/{2}\u3092\u8a8d\u8a3c
+SSHLauncher.AuthenticationSuccessful={0} [SSH] \u8a8d\u8a3c\u6210\u529f
+SSHLauncher.AuthenticationFailed={0} [SSH] \u8a8d\u8a3c\u5931\u6557
+SSHLauncher.AuthenticationFailedException=\u8a8d\u8a3c\u5931\u6557
+SSHLauncher.ErrorDeletingFile={0} [SSH] \u30d5\u30a1\u30a4\u30eb\u524a\u9664\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002
+SSHLauncher.DescriptorDisplayName=SSH\u7d4c\u7531\u3067Unix\u30de\u30b7\u30f3\u306e\u30b9\u30ec\u30fc\u30d6\u30a8\u30fc\u30b8\u30a7\u30f3\u30c8\u3092\u8d77\u52d5
+SSHLauncher.SSHHeeaderJunkDetected=\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3059\u308b\u524d\u306b\u3001SSH\u306e\u30b3\u30cd\u30af\u30b7\u30e7\u30f3\u306b\u4e0d\u8981\u306a\u30c7\u30fc\u30bf\u304c\u9001\u4fe1\u3055\u308c\u307e\u3057\u305f\u3002\n.bashrc, .profile\u306a\u3069\u3092\u78ba\u8a8d\u3057\u3066\u3001\u9001\u3089\u306a\u3044\u3088\u3046\u306b\u3057\u3066\u304f\u3060\u3055\u3044\u3002\n\u53d7\u4fe1\u3057\u305f\u4e0d\u8981\u306a\u30c7\u30fc\u30bf\u306f\u6b21\u306e\u901a\u308a\u3067\u3059\u3002:
+SSHLauncher.UknownJavaVersion={0} \u306eJava\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u4e0d\u660e\u3067\u3059\u3002
+SSHLauncher.UnexpectedError=\u30b9\u30ec\u30fc\u30d6\u306e\u8d77\u52d5\u6642\u306b\u4e0d\u660e\u306a\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002\u305f\u3076\u3093\u3001Jenkins\u306e\u30d0\u30b0\u3067\u3059\u3002
+SSHLauncher.StartingSlaveProcess={0} [SSH] \u30b9\u30ec\u30fc\u30d6\u306e\u30d7\u30ed\u30bb\u30b9\u3092\u958b\u59cb: {1}
+SSHLauncher.RemoteUserEnvironment={0} [SSH] \u30ea\u30e2\u30fc\u30c8\u30e6\u30fc\u30b6\u30fc\u306e\u74b0\u5883:
+SSHLauncher.StartingSCPClient={0} [SSH] SFTP\u304c\u5931\u6557\u3057\u307e\u3057\u305f\u3002SCP\u3067\u30b3\u30d4\u30fc\u3057\u307e\u3059\u3002
\ No newline at end of file
diff --git a/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/PluginImpl.class b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/PluginImpl.class
new file mode 100644
index 0000000..306baac
--- /dev/null
+++ b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/PluginImpl.class
Binary files differ
diff --git a/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/RemoteLauncher$1.class b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/RemoteLauncher$1.class
new file mode 100644
index 0000000..6aace30
--- /dev/null
+++ b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/RemoteLauncher$1.class
Binary files differ
diff --git a/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/RemoteLauncher.class b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/RemoteLauncher.class
new file mode 100644
index 0000000..62bc214
--- /dev/null
+++ b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/RemoteLauncher.class
Binary files differ
diff --git a/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SFTPClient$1.class b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SFTPClient$1.class
new file mode 100644
index 0000000..0be87b2
--- /dev/null
+++ b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SFTPClient$1.class
Binary files differ
diff --git a/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SFTPClient$2.class b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SFTPClient$2.class
new file mode 100644
index 0000000..3350a01
--- /dev/null
+++ b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SFTPClient$2.class
Binary files differ
diff --git a/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SFTPClient.class b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SFTPClient.class
new file mode 100644
index 0000000..f3aa1ee
--- /dev/null
+++ b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SFTPClient.class
Binary files differ
diff --git a/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SFTPFileSystem.class b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SFTPFileSystem.class
new file mode 100644
index 0000000..1beb11b
--- /dev/null
+++ b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SFTPFileSystem.class
Binary files differ
diff --git a/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHConnector$DescriptorImpl.class b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHConnector$DescriptorImpl.class
new file mode 100644
index 0000000..cc4ce50
--- /dev/null
+++ b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHConnector$DescriptorImpl.class
Binary files differ
diff --git a/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHConnector.class b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHConnector.class
new file mode 100644
index 0000000..4fbc576
--- /dev/null
+++ b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHConnector.class
Binary files differ
diff --git a/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHConnector.stapler b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHConnector.stapler
new file mode 100644
index 0000000..117ca2e
--- /dev/null
+++ b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHConnector.stapler
@@ -0,0 +1,2 @@
+#Sat Mar 26 23:36:20 CET 2011
+constructor=port,username,password,privatekey,jvmOptions,javaPath
diff --git a/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHConnector/config.jelly b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHConnector/config.jelly
new file mode 100644
index 0000000..d4e45bc
--- /dev/null
+++ b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHConnector/config.jelly
@@ -0,0 +1,29 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHConnector/config_es.properties b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHConnector/config_es.properties
new file mode 100644
index 0000000..86fd8cf
--- /dev/null
+++ b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHConnector/config_es.properties
@@ -0,0 +1,28 @@
+# The MIT License
+#
+# Copyright (c) 2004-2010, Sun Microsystems, Inc.
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Password=Contraseña
+JVM\ Options=Opciones para java
+Private\ Key\ File=Fichero con la clave privada
+Username=Usuario
+Port=Puerto
+Host=Nombre de máquina
diff --git a/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHConnector/config_fr.properties b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHConnector/config_fr.properties
new file mode 100644
index 0000000..a81d585
--- /dev/null
+++ b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHConnector/config_fr.properties
@@ -0,0 +1,25 @@
+# The MIT License
+#
+# Copyright (c) 2004-2010, Sun Microsystems, Inc.
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+JVM\ Options=Options de la JVM
+Password=Mot de passe
+Username=Utilisateur
diff --git a/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHConnector/config_ja.properties b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHConnector/config_ja.properties
new file mode 100644
index 0000000..60d3688
--- /dev/null
+++ b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHConnector/config_ja.properties
@@ -0,0 +1,28 @@
+# The MIT License
+#
+# Copyright (c) 2004-2010, Sun Microsystems, Inc.Seiji Sogabe
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Host=\u30db\u30b9\u30c8
+Username=\u30e6\u30fc\u30b6\u30fc\u540d
+Password=\u30d1\u30b9\u30ef\u30fc\u30c9
+Private\ Key\ File=\u79d8\u5bc6\u9375
+Port=\u30dd\u30fc\u30c8
+JVM\ Options=JVM\u30aa\u30d7\u30b7\u30e7\u30f3
diff --git a/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHConnector/config_sv_SE.properties b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHConnector/config_sv_SE.properties
new file mode 100644
index 0000000..dd6c0fe
--- /dev/null
+++ b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHConnector/config_sv_SE.properties
@@ -0,0 +1,28 @@
+# The MIT License
+#
+# Copyright (c) 2004-2010, Sun Microsystems, Inc.
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Host=V\u00E4rd
+JVM\ Options=JVM alternativ
+Password=L\u00F6senord
+Port=Port
+Private\ Key\ File=Privatnyckelfil
+Username=Anv\u00E4ndarnamn
diff --git a/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHConnector/help-javaPath.html b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHConnector/help-javaPath.html
new file mode 100644
index 0000000..8ff1883
--- /dev/null
+++ b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHConnector/help-javaPath.html
@@ -0,0 +1,5 @@
+
+
This java Path will be used to start the jvm. (/mycustomjdkpath/bin/java )
+ If empty Jenkins will search java command in the slave
+
+
diff --git a/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHConnector/help-password.html b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHConnector/help-password.html
new file mode 100644
index 0000000..2702681
--- /dev/null
+++ b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHConnector/help-password.html
@@ -0,0 +1,6 @@
+
+
This password will be used for both Public/Private Key authentication
+ and Username/Password authentication. If the SSH Private Key does not
+ require a password, this field will be ignored (i.e. it is not an error
+ to specify a password when none is needed).
+
diff --git a/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHConnector/help-password_ja.html b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHConnector/help-password_ja.html
new file mode 100644
index 0000000..d355374
--- /dev/null
+++ b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHConnector/help-password_ja.html
@@ -0,0 +1,5 @@
+
diff --git a/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHConnector/help-privatekey.html b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHConnector/help-privatekey.html
new file mode 100644
index 0000000..0851dbb
--- /dev/null
+++ b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHConnector/help-privatekey.html
@@ -0,0 +1,8 @@
+
+
This specifies the absolute path on the master to the SSH private key file
+ (e.g. id_dsa or id_rsa) to use for
+ "password-less" Public/Private Key authentication.
+
+
If this field is blank or if the Public/Private key authentication
+ fails, the plugin will attempt username/password authentication.
+
diff --git a/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHConnector/help-privatekey_ja.html b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHConnector/help-privatekey_ja.html
new file mode 100644
index 0000000..7d5c9f5
--- /dev/null
+++ b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHConnector/help-privatekey_ja.html
@@ -0,0 +1,5 @@
+
diff --git a/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHConnector/help-username.html b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHConnector/help-username.html
new file mode 100644
index 0000000..e5dcb6c
--- /dev/null
+++ b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHConnector/help-username.html
@@ -0,0 +1,4 @@
+
+ Specify the user name to be used for logging in to the remote host. If unspecified,
+ the user name that's running the Jenkins master will be used as a default.
+
\ No newline at end of file
diff --git a/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHConnector/help-username_ja.html b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHConnector/help-username_ja.html
new file mode 100644
index 0000000..b1d7503
--- /dev/null
+++ b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHConnector/help-username_ja.html
@@ -0,0 +1,4 @@
+
\ No newline at end of file
diff --git a/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHLauncher$1.class b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHLauncher$1.class
new file mode 100644
index 0000000..f38f4b5
--- /dev/null
+++ b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHLauncher$1.class
Binary files differ
diff --git a/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHLauncher$DefaultJavaProvider.class b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHLauncher$DefaultJavaProvider.class
new file mode 100644
index 0000000..d262d40
--- /dev/null
+++ b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHLauncher$DefaultJavaProvider.class
Binary files differ
diff --git a/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHLauncher$DescriptorImpl.class b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHLauncher$DescriptorImpl.class
new file mode 100644
index 0000000..f34c8d7
--- /dev/null
+++ b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHLauncher$DescriptorImpl.class
Binary files differ
diff --git a/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHLauncher.class b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHLauncher.class
new file mode 100644
index 0000000..585e78a
--- /dev/null
+++ b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHLauncher.class
Binary files differ
diff --git a/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHLauncher.stapler b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHLauncher.stapler
new file mode 100644
index 0000000..073c1ea
--- /dev/null
+++ b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHLauncher.stapler
@@ -0,0 +1,2 @@
+#Sat Mar 26 23:36:20 CET 2011
+constructor=host,port,username,password,privatekey,jvmOptions,javaPath
diff --git a/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHLauncher/config.jelly b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHLauncher/config.jelly
new file mode 100644
index 0000000..d956a4b
--- /dev/null
+++ b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHLauncher/config.jelly
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
diff --git a/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHLauncher/config_es.properties b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHLauncher/config_es.properties
new file mode 100644
index 0000000..86fd8cf
--- /dev/null
+++ b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHLauncher/config_es.properties
@@ -0,0 +1,28 @@
+# The MIT License
+#
+# Copyright (c) 2004-2010, Sun Microsystems, Inc.
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Password=Contraseña
+JVM\ Options=Opciones para java
+Private\ Key\ File=Fichero con la clave privada
+Username=Usuario
+Port=Puerto
+Host=Nombre de máquina
diff --git a/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHLauncher/config_fr.properties b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHLauncher/config_fr.properties
new file mode 100644
index 0000000..a81d585
--- /dev/null
+++ b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHLauncher/config_fr.properties
@@ -0,0 +1,25 @@
+# The MIT License
+#
+# Copyright (c) 2004-2010, Sun Microsystems, Inc.
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+JVM\ Options=Options de la JVM
+Password=Mot de passe
+Username=Utilisateur
diff --git a/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHLauncher/config_ja.properties b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHLauncher/config_ja.properties
new file mode 100644
index 0000000..60d3688
--- /dev/null
+++ b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHLauncher/config_ja.properties
@@ -0,0 +1,28 @@
+# The MIT License
+#
+# Copyright (c) 2004-2010, Sun Microsystems, Inc.Seiji Sogabe
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Host=\u30db\u30b9\u30c8
+Username=\u30e6\u30fc\u30b6\u30fc\u540d
+Password=\u30d1\u30b9\u30ef\u30fc\u30c9
+Private\ Key\ File=\u79d8\u5bc6\u9375
+Port=\u30dd\u30fc\u30c8
+JVM\ Options=JVM\u30aa\u30d7\u30b7\u30e7\u30f3
diff --git a/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHLauncher/config_sv_SE.properties b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHLauncher/config_sv_SE.properties
new file mode 100644
index 0000000..dd6c0fe
--- /dev/null
+++ b/work/plugins/ssh-slaves/WEB-INF/classes/hudson/plugins/sshslaves/SSHLauncher/config_sv_SE.properties
@@ -0,0 +1,28 @@
+# The MIT License
+#
+# Copyright (c) 2004-2010, Sun Microsystems, Inc.
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+Host=V\u00E4rd
+JVM\ Options=JVM alternativ
+Password=L\u00F6senord
+Port=Port
+Private\ Key\ File=Privatnyckelfil
+Username=Anv\u00E4ndarnamn
diff --git a/work/plugins/subversion.hpl b/work/plugins/subversion.hpl
new file mode 100644
index 0000000..4f17971
--- /dev/null
+++ b/work/plugins/subversion.hpl
@@ -0,0 +1,139 @@
+Manifest-Version: 1.0
+Group-Id: org.jenkins-ci.plugins
+Short-Name: subversion
+Long-Name: Jenkins Subversion Plug-in
+Url: http://wiki.jenkins-ci.org/display/JENKINS/Subversion+Plugin
+Plugin-Version: 1.43
+Hudson-Version: 1.405
+Jenkins-Version: 1.405
+Plugin-Dependencies: ui-samples-plugin:1.405,maven-plugin:1.405
+Plugin-Developers: Many:kohsuke abayer dodok1 dty huybrechts mindless
+ pgweiss stephenconnolly rseguy kutzi etc:
+Libraries: C:\TA\WS\subversion-plugin\target\classes,C:\Users\klaus.az
+ esberger\.m2\repository\org\jenkins-ci\svnkit\svnkit\1.7.4-jenkins-3\
+ svnkit-1.7.4-jenkins-3.jar,C:\Users\klaus.azesberger\.m2\repository\o
+ rg\tmatesoft\sqljet\sqljet\1.1.0\sqljet-1.1.0.jar,C:\Users\klaus.azes
+ berger\.m2\repository\org\antlr\antlr-runtime\3.4\antlr-runtime-3.4.j
+ ar,C:\Users\klaus.azesberger\.m2\repository\de\regnis\q\sequence\sequ
+ ence-library\1.0.1\sequence-library-1.0.1.jar,C:\Users\klaus.azesberg
+ er\.m2\repository\org\mockito\mockito-core\1.8.5\mockito-core-1.8.5.j
+ ar,C:\Users\klaus.azesberger\.m2\repository\org\hamcrest\hamcrest-cor
+ e\1.1\hamcrest-core-1.1.jar,C:\Users\klaus.azesberger\.m2\repository\
+ org\objenesis\objenesis\1.0\objenesis-1.0.jar,C:\Users\klaus.azesberg
+ er\.m2\repository\org\jenkins-ci\main\jenkins-test-harness\1.405\jenk
+ ins-test-harness-1.405.jar,C:\Users\klaus.azesberger\.m2\repository\o
+ rg\jenkins-ci\main\jenkins-war\1.405\jenkins-war-1.405-war-for-test.j
+ ar,C:\Users\klaus.azesberger\.m2\repository\org\jenkins-ci\modules\in
+ stance-identity\1.1\instance-identity-1.1.jar,C:\Users\klaus.azesberg
+ er\.m2\repository\bouncycastle\bcprov-jdk15\140\bcprov-jdk15-140.jar,
+ C:\Users\klaus.azesberger\.m2\repository\org\jenkins-ci\main\maven-pl
+ ugin\1.405\maven-plugin-1.405.jar,C:\Users\klaus.azesberger\.m2\repos
+ itory\org\jenkins-ci\main\maven\maven-agent\1.1\maven-agent-1.1.jar,C
+ :\Users\klaus.azesberger\.m2\repository\org\jenkins-ci\main\maven\mav
+ en-interceptor\1.1\maven-interceptor-1.1.jar,C:\Users\klaus.azesberge
+ r\.m2\repository\org\jvnet\hudson\maven2.1-interceptor\1.2\maven2.1-i
+ nterceptor-1.2.jar,C:\Users\klaus.azesberger\.m2\repository\org\jenki
+ ns-ci\main\maven\maven3-agent\1.1\maven3-agent-1.1.jar,C:\Users\klaus
+ .azesberger\.m2\repository\org\jenkins-ci\main\maven\maven3-intercept
+ or\1.1\maven3-interceptor-1.1.jar,C:\Users\klaus.azesberger\.m2\repos
+ itory\org\apache\maven\maven-core\3.0.3\maven-core-3.0.3.jar,C:\Users
+ \klaus.azesberger\.m2\repository\org\apache\maven\maven-model\3.0.3\m
+ aven-model-3.0.3.jar,C:\Users\klaus.azesberger\.m2\repository\org\apa
+ che\maven\maven-settings\3.0.3\maven-settings-3.0.3.jar,C:\Users\klau
+ s.azesberger\.m2\repository\org\apache\maven\maven-settings-builder\3
+ .0.3\maven-settings-builder-3.0.3.jar,C:\Users\klaus.azesberger\.m2\r
+ epository\org\apache\maven\maven-repository-metadata\3.0.3\maven-repo
+ sitory-metadata-3.0.3.jar,C:\Users\klaus.azesberger\.m2\repository\or
+ g\apache\maven\maven-artifact\3.0.3\maven-artifact-3.0.3.jar,C:\Users
+ \klaus.azesberger\.m2\repository\org\apache\maven\maven-plugin-api\3.
+ 0.3\maven-plugin-api-3.0.3.jar,C:\Users\klaus.azesberger\.m2\reposito
+ ry\org\apache\maven\maven-model-builder\3.0.3\maven-model-builder-3.0
+ .3.jar,C:\Users\klaus.azesberger\.m2\repository\org\codehaus\plexus\p
+ lexus-interpolation\1.14\plexus-interpolation-1.14.jar,C:\Users\klaus
+ .azesberger\.m2\repository\org\codehaus\plexus\plexus-utils\2.0.6\ple
+ xus-utils-2.0.6.jar,C:\Users\klaus.azesberger\.m2\repository\org\code
+ haus\plexus\plexus-component-annotations\1.5.5\plexus-component-annot
+ ations-1.5.5.jar,C:\Users\klaus.azesberger\.m2\repository\org\sonatyp
+ e\plexus\plexus-sec-dispatcher\1.3\plexus-sec-dispatcher-1.3.jar,C:\U
+ sers\klaus.azesberger\.m2\repository\org\apache\maven\maven-compat\3.
+ 0.3\maven-compat-3.0.3.jar,C:\Users\klaus.azesberger\.m2\repository\o
+ rg\apache\maven\maven-aether-provider\3.0.3\maven-aether-provider-3.0
+ .3.jar,C:\Users\klaus.azesberger\.m2\repository\org\apache\maven\mave
+ n-embedder\3.0.3\maven-embedder-3.0.3.jar,C:\Users\klaus.azesberger\.
+ m2\repository\org\sonatype\plexus\plexus-cipher\1.4\plexus-cipher-1.4
+ .jar,C:\Users\klaus.azesberger\.m2\repository\commons-cli\commons-cli
+ \1.2\commons-cli-1.2.jar,C:\Users\klaus.azesberger\.m2\repository\org
+ \sonatype\aether\aether-api\1.11\aether-api-1.11.jar,C:\Users\klaus.a
+ zesberger\.m2\repository\org\sonatype\aether\aether-impl\1.11\aether-
+ impl-1.11.jar,C:\Users\klaus.azesberger\.m2\repository\org\sonatype\a
+ ether\aether-spi\1.11\aether-spi-1.11.jar,C:\Users\klaus.azesberger\.
+ m2\repository\org\sonatype\aether\aether-util\1.11\aether-util-1.11.j
+ ar,C:\Users\klaus.azesberger\.m2\repository\org\sonatype\aether\aethe
+ r-connector-wagon\1.11\aether-connector-wagon-1.11.jar,C:\Users\klaus
+ .azesberger\.m2\repository\org\sonatype\sisu\sisu-inject-plexus\1.4.3
+ .1\sisu-inject-plexus-1.4.3.1.jar,C:\Users\klaus.azesberger\.m2\repos
+ itory\org\sonatype\sisu\sisu-inject-bean\1.4.3.1\sisu-inject-bean-1.4
+ .3.1.jar,C:\Users\klaus.azesberger\.m2\repository\org\sonatype\sisu\s
+ isu-guice\2.9.1\sisu-guice-2.9.1-noaop.jar,C:\Users\klaus.azesberger\
+ .m2\repository\org\apache\maven\wagon\wagon-http-lightweight\1.0-beta
+ -7\wagon-http-lightweight-1.0-beta-7.jar,C:\Users\klaus.azesberger\.m
+ 2\repository\org\apache\maven\wagon\wagon-http-shared\1.0-beta-7\wago
+ n-http-shared-1.0-beta-7.jar,C:\Users\klaus.azesberger\.m2\repository
+ \org\apache\maven\wagon\wagon-file\1.0-beta-7\wagon-file-1.0-beta-7.j
+ ar,C:\Users\klaus.azesberger\.m2\repository\org\apache\maven\wagon\wa
+ gon-ftp\1.0-beta-7\wagon-ftp-1.0-beta-7.jar,C:\Users\klaus.azesberger
+ \.m2\repository\commons-net\commons-net\2.0\commons-net-2.0.jar,C:\Us
+ ers\klaus.azesberger\.m2\repository\org\apache\maven\wagon\wagon-ssh\
+ 1.0-beta-7\wagon-ssh-1.0-beta-7.jar,C:\Users\klaus.azesberger\.m2\rep
+ ository\com\jcraft\jsch\0.1.38\jsch-0.1.38.jar,C:\Users\klaus.azesber
+ ger\.m2\repository\org\apache\maven\wagon\wagon-ssh-common\1.0-beta-7
+ \wagon-ssh-common-1.0-beta-7.jar,C:\Users\klaus.azesberger\.m2\reposi
+ tory\org\codehaus\plexus\plexus-interactivity-api\1.0-alpha-6\plexus-
+ interactivity-api-1.0-alpha-6.jar,C:\Users\klaus.azesberger\.m2\repos
+ itory\org\apache\maven\wagon\wagon-ssh-external\1.0-beta-7\wagon-ssh-
+ external-1.0-beta-7.jar,C:\Users\klaus.azesberger\.m2\repository\org\
+ apache\maven\wagon\wagon-provider-api\1.0-beta-7\wagon-provider-api-1
+ .0-beta-7.jar,C:\Users\klaus.azesberger\.m2\repository\org\apache\mav
+ en\reporting\maven-reporting-api\3.0\maven-reporting-api-3.0.jar,C:\U
+ sers\klaus.azesberger\.m2\repository\org\apache\maven\doxia\doxia-sin
+ k-api\1.0\doxia-sink-api-1.0.jar,C:\Users\klaus.azesberger\.m2\reposi
+ tory\org\codehaus\plexus\plexus-classworlds\2.3\plexus-classworlds-2.
+ 3.jar,C:\Users\klaus.azesberger\.m2\repository\org\jenkins-ci\lib\lib
+ -jenkins-maven-artifact-manager\1.1\lib-jenkins-maven-artifact-manage
+ r-1.1.jar,C:\Users\klaus.azesberger\.m2\repository\org\jvnet\hudson\h
+ udson-maven-embedder\3.2\hudson-maven-embedder-3.2.jar,C:\Users\klaus
+ .azesberger\.m2\repository\org\jvnet\hudson\wagon-webdav\1.0-beta-2-h
+ udson-1\wagon-webdav-1.0-beta-2-hudson-1.jar,C:\Users\klaus.azesberge
+ r\.m2\repository\slide\slide-webdavlib\2.1\slide-webdavlib-2.1.jar,C:
+ \Users\klaus.azesberger\.m2\repository\de\zeigermann\xml\xml-im-expor
+ ter\1.1\xml-im-exporter-1.1.jar,C:\Users\klaus.azesberger\.m2\reposit
+ ory\net\sourceforge\nekohtml\nekohtml\1.9.13\nekohtml-1.9.13.jar,C:\U
+ sers\klaus.azesberger\.m2\repository\org\mortbay\jetty\jetty\6.1.11\j
+ etty-6.1.11.jar,C:\Users\klaus.azesberger\.m2\repository\org\mortbay\
+ jetty\jetty-util\6.1.11\jetty-util-6.1.11.jar,C:\Users\klaus.azesberg
+ er\.m2\repository\org\mortbay\jetty\servlet-api-2.5\6.1.11\servlet-ap
+ i-2.5-6.1.11.jar,C:\Users\klaus.azesberger\.m2\repository\org\jvnet\h
+ udson\test-annotations\1.0\test-annotations-1.0.jar,C:\Users\klaus.az
+ esberger\.m2\repository\org\jvnet\mock-javamail\mock-javamail\1.7\moc
+ k-javamail-1.7.jar,C:\Users\klaus.azesberger\.m2\repository\org\jvnet
+ \hudson\htmlunit\2.6-hudson-2\htmlunit-2.6-hudson-2.jar,C:\Users\klau
+ s.azesberger\.m2\repository\xalan\xalan\2.7.1\xalan-2.7.1.jar,C:\User
+ s\klaus.azesberger\.m2\repository\xalan\serializer\2.7.1\serializer-2
+ .7.1.jar,C:\Users\klaus.azesberger\.m2\repository\commons-httpclient\
+ commons-httpclient\3.1\commons-httpclient-3.1.jar,C:\Users\klaus.azes
+ berger\.m2\repository\org\jvnet\hudson\htmlunit-core-js\2.6-hudson-1\
+ htmlunit-core-js-2.6-hudson-1.jar,C:\Users\klaus.azesberger\.m2\repos
+ itory\xerces\xercesImpl\2.9.1\xercesImpl-2.9.1.jar,C:\Users\klaus.aze
+ sberger\.m2\repository\net\sourceforge\cssparser\cssparser\0.9.5\cssp
+ arser-0.9.5.jar,C:\Users\klaus.azesberger\.m2\repository\org\w3c\css\
+ sac\1.3\sac-1.3.jar,C:\Users\klaus.azesberger\.m2\repository\org\jvne
+ t\hudson\embedded-rhino-debugger\1.2\embedded-rhino-debugger-1.2.jar,
+ C:\Users\klaus.azesberger\.m2\repository\org\jvnet\hudson\netx\0.5-hu
+ dson-2\netx-0.5-hudson-2.jar,C:\Users\klaus.azesberger\.m2\repository
+ \org\easymock\easymock\2.4\easymock-2.4.jar,C:\Users\klaus.azesberger
+ \.m2\repository\junit\junit\4.9\junit-4.9.jar,C:\Users\klaus.azesberg
+ er\.m2\repository\org\jenkins-ci\main\jenkins-war\1.405\jenkins-war-1
+ .405.war,C:\Users\klaus.azesberger\.m2\repository\org\jenkins-ci\main
+ \ui-samples-plugin\1.405\ui-samples-plugin-1.405.jar
+Resource-Path: C:\TA\WS\subversion-plugin\src\main\webapp
+
diff --git a/work/plugins/ui-samples-plugin.hpi b/work/plugins/ui-samples-plugin.hpi
new file mode 100644
index 0000000..2b8112e
--- /dev/null
+++ b/work/plugins/ui-samples-plugin.hpi
Binary files differ
diff --git a/work/plugins/ui-samples-plugin.hpi.pinned b/work/plugins/ui-samples-plugin.hpi.pinned
new file mode 100644
index 0000000..e5df6ce
--- /dev/null
+++ b/work/plugins/ui-samples-plugin.hpi.pinned
@@ -0,0 +1 @@
+pinned
\ No newline at end of file
diff --git a/work/plugins/ui-samples-plugin/.timestamp b/work/plugins/ui-samples-plugin/.timestamp
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/work/plugins/ui-samples-plugin/.timestamp
diff --git a/work/plugins/ui-samples-plugin/META-INF/MANIFEST.MF b/work/plugins/ui-samples-plugin/META-INF/MANIFEST.MF
new file mode 100644
index 0000000..cb0b015
--- /dev/null
+++ b/work/plugins/ui-samples-plugin/META-INF/MANIFEST.MF
@@ -0,0 +1,18 @@
+Manifest-Version: 1.0
+Archiver-Version: Plexus Archiver
+Created-By: Apache Maven
+Built-By: kohsuke
+Build-Jdk: 1.6.0_24
+Extension-Name: ui-samples-plugin
+Specification-Title: The module that constitutes the main jenkins.war
+Implementation-Title: ui-samples-plugin
+Implementation-Version: 1.405
+Group-Id: org.jenkins-ci.main
+Short-Name: ui-samples-plugin
+Long-Name: Jenkins UI sample plugin
+Url: http://jenkins-ci.org/pom/ui-samples-plugin/
+Plugin-Version: 1.405
+Hudson-Version: 1.405
+Jenkins-Version: 1.405
+Plugin-Developers:
+
diff --git a/work/plugins/ui-samples-plugin/META-INF/maven/org.jenkins-ci.main/ui-samples-plugin/pom.properties b/work/plugins/ui-samples-plugin/META-INF/maven/org.jenkins-ci.main/ui-samples-plugin/pom.properties
new file mode 100644
index 0000000..b07de4a
--- /dev/null
+++ b/work/plugins/ui-samples-plugin/META-INF/maven/org.jenkins-ci.main/ui-samples-plugin/pom.properties
@@ -0,0 +1,5 @@
+#Generated by Maven
+#Mon Apr 04 09:47:48 PDT 2011
+version=1.405
+groupId=org.jenkins-ci.main
+artifactId=ui-samples-plugin
diff --git a/work/plugins/ui-samples-plugin/META-INF/maven/org.jenkins-ci.main/ui-samples-plugin/pom.xml b/work/plugins/ui-samples-plugin/META-INF/maven/org.jenkins-ci.main/ui-samples-plugin/pom.xml
new file mode 100644
index 0000000..905827d
--- /dev/null
+++ b/work/plugins/ui-samples-plugin/META-INF/maven/org.jenkins-ci.main/ui-samples-plugin/pom.xml
@@ -0,0 +1,116 @@
+
+
+
+ 4.0.0
+
+ org.jenkins-ci.main
+ pom
+ 1.405
+
+
+ ui-samples-plugin
+ hpi
+ Jenkins UI sample plugin
+
+
+
+ org.jenkins-ci.main
+ jenkins-core
+ ${project.version}
+ provided
+
+
+
+ org.jenkins-ci.main
+ jenkins-test-harness
+ ${project.version}
+ test
+
+
+ org.jenkins-ci.main
+ jenkins-war
+ war
+ ${project.version}
+ test
+
+
+ javax.servlet
+ servlet-api
+ 2.4
+ provided
+
+
+
+
+
+ ${project.artifactId}
+ package
+
+
+ src/main/resources
+
+
+ src/main/java
+
+
+
+
+ org.jenkins-ci.tools
+ maven-hpi-plugin
+
+ true
+
+ true
+
+
+
+ org.kohsuke.stapler
+ maven-stapler-plugin
+ 1.15
+ true
+
+
+ org.jvnet.localizer
+ maven-localizer-plugin
+ 1.8
+
+
+
+ generate
+
+
+ Messages.properties
+ target/generated-sources/localizer
+
+
+
+
+
+
+
diff --git a/work/plugins/ui-samples-plugin/WEB-INF/classes/META-INF/annotations/hudson.Extension b/work/plugins/ui-samples-plugin/WEB-INF/classes/META-INF/annotations/hudson.Extension
new file mode 100644
index 0000000..eedbaea
--- /dev/null
+++ b/work/plugins/ui-samples-plugin/WEB-INF/classes/META-INF/annotations/hudson.Extension
Binary files differ
diff --git a/work/plugins/ui-samples-plugin/WEB-INF/classes/META-INF/exposed.stapler-beans b/work/plugins/ui-samples-plugin/WEB-INF/classes/META-INF/exposed.stapler-beans
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/work/plugins/ui-samples-plugin/WEB-INF/classes/META-INF/exposed.stapler-beans
diff --git a/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/AutoCompleteTextBox$DescriptorImpl.class b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/AutoCompleteTextBox$DescriptorImpl.class
new file mode 100644
index 0000000..d086ce4
--- /dev/null
+++ b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/AutoCompleteTextBox$DescriptorImpl.class
Binary files differ
diff --git a/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/AutoCompleteTextBox.class b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/AutoCompleteTextBox.class
new file mode 100644
index 0000000..d42783e
--- /dev/null
+++ b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/AutoCompleteTextBox.class
Binary files differ
diff --git a/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/AutoCompleteTextBox.java b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/AutoCompleteTextBox.java
new file mode 100644
index 0000000..adeab08
--- /dev/null
+++ b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/AutoCompleteTextBox.java
@@ -0,0 +1,113 @@
+/*
+ * The MIT License
+ *
+ * Copyright (c) 2010, InfraDNA, Inc.
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
+ * of this software and associated documentation files (the "Software"), to deal
+ * in the Software without restriction, including without limitation the rights
+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ * copies of the Software, and to permit persons to whom the Software is
+ * furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice shall be included in
+ * all copies or substantial portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+ * THE SOFTWARE.
+ */
+
+package hudson.plugins.ui_samples;
+
+import hudson.Extension;
+import hudson.model.AutoCompletionCandidates;
+import org.kohsuke.stapler.QueryParameter;
+
+/**
+ * Adding auto-completion to the text box.
+ *
+ * @author Kohsuke Kawaguchi
+ */
+@Extension
+public class AutoCompleteTextBox extends UISample {
+ @Override
+ public String getDescription() {
+ return "Provide auto-completion to the text box";
+ }
+
+ @Extension
+ public static final class DescriptorImpl extends UISampleDescriptor {
+ /**
+ * This method provides auto-completion items for the 'state' field.
+ * Stapler finds this method via the naming convention.
+ *
+ * @param value
+ * The text that the user entered.
+ */
+ public AutoCompletionCandidates doAutoCompleteState(@QueryParameter String value) {
+ AutoCompletionCandidates c = new AutoCompletionCandidates();
+ for (String state : STATES)
+ if (state.toLowerCase().startsWith(value.toLowerCase()))
+ c.add(state);
+ return c;
+ }
+ }
+
+ private static final String[] STATES = new String[]{
+ "Alabama",
+ "Alaska",
+ "Arizona",
+ "Arkansas",
+ "California",
+ "Colorado",
+ "Connecticut",
+ "Delaware",
+ "Florida",
+ "Georgia",
+ "Hawaii",
+ "Idaho",
+ "Illinois",
+ "Indiana",
+ "Iowa",
+ "Kansas",
+ "Kentucky",
+ "Louisiana",
+ "Maine",
+ "Maryland",
+ "Massachusetts",
+ "Michigan",
+ "Minnesota",
+ "Mississippi",
+ "Missouri",
+ "Montana",
+ "Nebraska",
+ "Nevada",
+ "New Hampshire",
+ "New Jersey",
+ "New Mexico",
+ "New York",
+ "North Carolina",
+ "North Dakota",
+ "Ohio",
+ "Oklahoma",
+ "Oregon",
+ "Pennsylvania",
+ "Rhode Island",
+ "South Carolina",
+ "South Dakota",
+ "Tennessee",
+ "Texas",
+ "Utah",
+ "Vermont",
+ "Virginia",
+ "Washington",
+ "West Virginia",
+ "Wisconsin",
+ "Wyoming"
+ };
+}
diff --git a/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/AutoCompleteTextBox/DescriptorImpl/doAutoCompleteState.stapler b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/AutoCompleteTextBox/DescriptorImpl/doAutoCompleteState.stapler
new file mode 100644
index 0000000..2890eea
--- /dev/null
+++ b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/AutoCompleteTextBox/DescriptorImpl/doAutoCompleteState.stapler
@@ -0,0 +1 @@
+value
\ No newline at end of file
diff --git a/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/AutoCompleteTextBox/index.jelly b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/AutoCompleteTextBox/index.jelly
new file mode 100644
index 0000000..45381e7
--- /dev/null
+++ b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/AutoCompleteTextBox/index.jelly
@@ -0,0 +1,36 @@
+
+
+
+
+
+
+
+
diff --git a/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DropdownList$1.class b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DropdownList$1.class
new file mode 100644
index 0000000..23fd3cb
--- /dev/null
+++ b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DropdownList$1.class
Binary files differ
diff --git a/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DropdownList$Apple.class b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DropdownList$Apple.class
new file mode 100644
index 0000000..e33051a
--- /dev/null
+++ b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DropdownList$Apple.class
Binary files differ
diff --git a/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DropdownList$Banana.class b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DropdownList$Banana.class
new file mode 100644
index 0000000..ddcdb6d
--- /dev/null
+++ b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DropdownList$Banana.class
Binary files differ
diff --git a/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DropdownList$DescriptorImpl.class b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DropdownList$DescriptorImpl.class
new file mode 100644
index 0000000..b22a169
--- /dev/null
+++ b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DropdownList$DescriptorImpl.class
Binary files differ
diff --git a/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DropdownList$Fruit.class b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DropdownList$Fruit.class
new file mode 100644
index 0000000..96f4db8
--- /dev/null
+++ b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DropdownList$Fruit.class
Binary files differ
diff --git a/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DropdownList$FruitDescriptor.class b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DropdownList$FruitDescriptor.class
new file mode 100644
index 0000000..9aaf431
--- /dev/null
+++ b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DropdownList$FruitDescriptor.class
Binary files differ
diff --git a/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DropdownList.class b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DropdownList.class
new file mode 100644
index 0000000..2539ca6
--- /dev/null
+++ b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DropdownList.class
Binary files differ
diff --git a/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DropdownList.java b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DropdownList.java
new file mode 100644
index 0000000..82c82ba
--- /dev/null
+++ b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DropdownList.java
@@ -0,0 +1,92 @@
+package hudson.plugins.ui_samples;
+
+import hudson.DescriptorExtensionList;
+import hudson.Extension;
+import hudson.ExtensionPoint;
+import hudson.model.Describable;
+import hudson.model.Descriptor;
+import hudson.model.Hudson;
+import hudson.util.XStream2;
+import java.io.IOException;
+import java.util.List;
+import javax.servlet.ServletException;
+import org.kohsuke.stapler.DataBoundConstructor;
+import org.kohsuke.stapler.StaplerRequest;
+import org.kohsuke.stapler.StaplerResponse;
+
+/**
+ * @author Alan.Harder@oracle.com
+ */
+@Extension
+public class DropdownList extends UISample {
+
+ @Override
+ public String getDescription() {
+ return "Show different form elements based on choice in a <select> control";
+ }
+
+ public Fruit getFruit() {
+ // Could return currently configured/saved item here to initialized form with this data
+ return null;
+ }
+
+ public DescriptorExtensionList> getFruitDescriptors() {
+ return Hudson.getInstance().>getDescriptorList(Fruit.class);
+ }
+
+ // Process form data and show it as serialized XML
+ public void doSubmit(StaplerRequest req, StaplerResponse rsp) throws ServletException, IOException {
+ // stapler-class in form data tells Stapler which Fruit subclass to use
+ Fruit fruit = req.bindJSON(Fruit.class, req.getSubmittedForm().getJSONObject("fruit"));
+ rsp.setContentType("text/plain");
+ new XStream2().toXML(fruit, rsp.getWriter());
+ }
+
+ @Override
+ public List getSourceFiles() {
+ List list = new java.util.ArrayList(super.getSourceFiles());
+ list.add(new SourceFile("Apple/config.jelly"));
+ list.add(new SourceFile("Banana/config.jelly"));
+ return list;
+ }
+
+ @Extension
+ public static final class DescriptorImpl extends UISampleDescriptor {
+ }
+
+ public static class Fruit implements ExtensionPoint, Describable {
+ protected String name;
+ private Fruit(String name) { this.name = name; }
+
+ public Descriptor getDescriptor() {
+ return Hudson.getInstance().getDescriptor(getClass());
+ }
+ }
+
+ public static class FruitDescriptor extends Descriptor {
+ public FruitDescriptor(Class extends Fruit> clazz) {
+ super(clazz);
+ }
+ public String getDisplayName() {
+ return clazz.getSimpleName();
+ }
+ }
+
+ public static class Apple extends Fruit {
+ private int seeds;
+ @DataBoundConstructor public Apple(int seeds) {
+ super("Apple");
+ this.seeds = seeds;
+ }
+ @Extension public static final FruitDescriptor D = new FruitDescriptor(Apple.class);
+ }
+
+ public static class Banana extends Fruit {
+ private boolean yellow;
+ @DataBoundConstructor public Banana(boolean yellow) {
+ super("Banana");
+ this.yellow = yellow;
+ }
+ @Extension public static final FruitDescriptor D = new FruitDescriptor(Banana.class);
+ }
+}
diff --git a/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DropdownList/Apple.stapler b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DropdownList/Apple.stapler
new file mode 100644
index 0000000..e601138
--- /dev/null
+++ b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DropdownList/Apple.stapler
@@ -0,0 +1,2 @@
+#Mon Apr 04 09:47:45 PDT 2011
+constructor=seeds
diff --git a/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DropdownList/Apple/config.jelly b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DropdownList/Apple/config.jelly
new file mode 100644
index 0000000..932613b
--- /dev/null
+++ b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DropdownList/Apple/config.jelly
@@ -0,0 +1,29 @@
+
+
+
+
+
+
+
diff --git a/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DropdownList/Banana.stapler b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DropdownList/Banana.stapler
new file mode 100644
index 0000000..b12ff30
--- /dev/null
+++ b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DropdownList/Banana.stapler
@@ -0,0 +1,2 @@
+#Mon Apr 04 09:47:45 PDT 2011
+constructor=yellow
diff --git a/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DropdownList/Banana/config.jelly b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DropdownList/Banana/config.jelly
new file mode 100644
index 0000000..8079626
--- /dev/null
+++ b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DropdownList/Banana/config.jelly
@@ -0,0 +1,29 @@
+
+
+
+
+
+
+
diff --git a/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DropdownList/index.jelly b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DropdownList/index.jelly
new file mode 100644
index 0000000..c2f6b05
--- /dev/null
+++ b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DropdownList/index.jelly
@@ -0,0 +1,50 @@
+
+
+
+
+
+
+
diff --git a/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DynamicComboBox$DescriptorImpl.class b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DynamicComboBox$DescriptorImpl.class
new file mode 100644
index 0000000..2c31a0f
--- /dev/null
+++ b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DynamicComboBox$DescriptorImpl.class
Binary files differ
diff --git a/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DynamicComboBox.class b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DynamicComboBox.class
new file mode 100644
index 0000000..854a4f2
--- /dev/null
+++ b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DynamicComboBox.class
Binary files differ
diff --git a/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DynamicComboBox.java b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DynamicComboBox.java
new file mode 100644
index 0000000..c806eda
--- /dev/null
+++ b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DynamicComboBox.java
@@ -0,0 +1,64 @@
+package hudson.plugins.ui_samples;
+
+import hudson.Extension;
+import hudson.util.ComboBoxModel;
+import hudson.util.ListBoxModel;
+import org.kohsuke.stapler.QueryParameter;
+
+/**
+ * Combo box that changes the contents based on the values of other controls.
+ *
+ * @author Kohsuke Kawaguchi
+ */
+@Extension
+public class DynamicComboBox extends UISample {
+
+ @Override
+ public String getDescription() {
+ return "Updates the contents of a combo box control dynamically based on selections of other controls";
+ }
+
+ // these getter methods should return the current value, which form the initial selection.
+
+ public String getAlbum() {
+ return "3";
+ }
+
+ public String getTitle() {
+ return "Rocker";
+ }
+
+ @Extension
+ public static final class DescriptorImpl extends UISampleDescriptor {
+ /**
+ * This method determines the values of the album drop-down list box.
+ */
+ public ListBoxModel doFillAlbumItems() {
+ ListBoxModel m = new ListBoxModel();
+ m.add("Yellow Submarine","1");
+ m.add("Abbey Road","2");
+ m.add("Let It Be","3");
+ return m;
+ }
+
+ /**
+ * This method determines the values of the song title combo box.
+ * Note that it takes the album information as a parameter, so the contents
+ * of the combo box changes depending on the currently selected album.
+ */
+ public ComboBoxModel doFillTitleItems(@QueryParameter int album) {
+ switch (album) {
+ case 1:
+ return new ComboBoxModel("Yellow Submarine","Only a Northern Song","All You Need Is Love");
+ case 2:
+ return new ComboBoxModel("Come Together","Something","I Want You");
+ case 3:
+ return new ComboBoxModel("The One After 909","Rocker","Get Back");
+ default:
+ // if no value is selected in the album, we'll get 0
+ return new ComboBoxModel();
+ }
+ }
+
+ }
+}
\ No newline at end of file
diff --git a/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DynamicComboBox/DescriptorImpl/doFillTitleItems.stapler b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DynamicComboBox/DescriptorImpl/doFillTitleItems.stapler
new file mode 100644
index 0000000..0b136ba
--- /dev/null
+++ b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DynamicComboBox/DescriptorImpl/doFillTitleItems.stapler
@@ -0,0 +1 @@
+album
\ No newline at end of file
diff --git a/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DynamicComboBox/index.jelly b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DynamicComboBox/index.jelly
new file mode 100644
index 0000000..0d66eed
--- /dev/null
+++ b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DynamicComboBox/index.jelly
@@ -0,0 +1,38 @@
+
+
+
+
+
+
+
diff --git a/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DynamicDropDownListBox$DescriptorImpl.class b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DynamicDropDownListBox$DescriptorImpl.class
new file mode 100644
index 0000000..25d765d
--- /dev/null
+++ b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DynamicDropDownListBox$DescriptorImpl.class
Binary files differ
diff --git a/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DynamicDropDownListBox.class b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DynamicDropDownListBox.class
new file mode 100644
index 0000000..edabc49
--- /dev/null
+++ b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DynamicDropDownListBox.class
Binary files differ
diff --git a/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DynamicDropDownListBox.java b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DynamicDropDownListBox.java
new file mode 100644
index 0000000..d6c66fa
--- /dev/null
+++ b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DynamicDropDownListBox.java
@@ -0,0 +1,54 @@
+package hudson.plugins.ui_samples;
+
+import hudson.Extension;
+import hudson.util.ListBoxModel;
+import org.kohsuke.stapler.QueryParameter;
+
+import static java.util.Arrays.asList;
+
+/**
+ * Example of a dynamic drop-down list box that changes the contents dynamically based on the values of other controls.
+ *
+ * @author Kohsuke Kawaguchi
+ */
+@Extension
+public class DynamicDropDownListBox extends UISample {
+
+ @Override
+ public String getDescription() {
+ return "Updates the contents of a <select> control dynamically based on selections of other controls";
+ }
+
+ // these getter methods should return the current value, which form the initial selection.
+
+ public String getCountry() {
+ return "USA";
+ }
+
+ public String getState() {
+ return "USA:B";
+ }
+
+ public String getCity() {
+ return "USA:B:Z";
+ }
+
+ @Extension
+ public static final class DescriptorImpl extends UISampleDescriptor {
+ public ListBoxModel doFillStateItems(@QueryParameter String country) {
+ ListBoxModel m = new ListBoxModel();
+ for (String s : asList("A","B","C"))
+ m.add(String.format("State %s in %s", s, country),
+ country+':'+s);
+ return m;
+ }
+
+ public ListBoxModel doFillCityItems(@QueryParameter String country, @QueryParameter String state) {
+ ListBoxModel m = new ListBoxModel();
+ for (String s : asList("X","Y","Z"))
+ m.add(String.format("City %s in %s %s", s, state, country),
+ state+':'+s);
+ return m;
+ }
+ }
+}
diff --git a/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DynamicDropDownListBox/DescriptorImpl/doFillCityItems.stapler b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DynamicDropDownListBox/DescriptorImpl/doFillCityItems.stapler
new file mode 100644
index 0000000..317ee67
--- /dev/null
+++ b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DynamicDropDownListBox/DescriptorImpl/doFillCityItems.stapler
@@ -0,0 +1 @@
+country,state
\ No newline at end of file
diff --git a/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DynamicDropDownListBox/DescriptorImpl/doFillStateItems.stapler b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DynamicDropDownListBox/DescriptorImpl/doFillStateItems.stapler
new file mode 100644
index 0000000..d6cef85
--- /dev/null
+++ b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DynamicDropDownListBox/DescriptorImpl/doFillStateItems.stapler
@@ -0,0 +1 @@
+country
\ No newline at end of file
diff --git a/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DynamicDropDownListBox/index.jelly b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DynamicDropDownListBox/index.jelly
new file mode 100644
index 0000000..7366121
--- /dev/null
+++ b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/DynamicDropDownListBox/index.jelly
@@ -0,0 +1,41 @@
+
+
+
+
+
+
+
diff --git a/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/JavaScriptProxy$DescriptorImpl.class b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/JavaScriptProxy$DescriptorImpl.class
new file mode 100644
index 0000000..e1a7d1a
--- /dev/null
+++ b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/JavaScriptProxy$DescriptorImpl.class
Binary files differ
diff --git a/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/JavaScriptProxy.class b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/JavaScriptProxy.class
new file mode 100644
index 0000000..e0a99e7
--- /dev/null
+++ b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/JavaScriptProxy.class
Binary files differ
diff --git a/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/JavaScriptProxy.java b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/JavaScriptProxy.java
new file mode 100644
index 0000000..33a90f6
--- /dev/null
+++ b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/JavaScriptProxy.java
@@ -0,0 +1,32 @@
+package hudson.plugins.ui_samples;
+
+import hudson.Extension;
+import org.kohsuke.stapler.bind.JavaScriptMethod;
+
+/**
+ * "Export" Java objects to JavaScript in the browser as a proxy object, so that
+ * you can make ajax-calls to the server later.
+ *
+ * @author Kohsuke Kawaguchi
+ */
+@Extension
+public class JavaScriptProxy extends UISample {
+ private int i;
+
+ @Override
+ public String getDescription() {
+ return "Use JavaScript proxy objects to access server-side Java objects from inside the browser.";
+ }
+
+ /**
+ * The annotation exposes this method to JavaScript proxy.
+ */
+ @JavaScriptMethod
+ public int increment(int n) {
+ return i+=n;
+ }
+
+ @Extension
+ public static final class DescriptorImpl extends UISampleDescriptor {
+ }
+}
diff --git a/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/JavaScriptProxy/index.jelly b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/JavaScriptProxy/index.jelly
new file mode 100644
index 0000000..7192bbc
--- /dev/null
+++ b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/JavaScriptProxy/index.jelly
@@ -0,0 +1,45 @@
+
+
+
+
+
+ In Jenkins, you can export arbitrary server-side Java object to JavaScript via a proxy,
+ then invoke their methods from JavaScript. See the Wiki for more details.
+ In this sample, we call a method on the server to increment a counter. This object is a singleton,
+ so you'll see the same counter value across all the browsers.
+
+
+
+
+
+
+
+
diff --git a/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/Root.class b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/Root.class
new file mode 100644
index 0000000..28e5638
--- /dev/null
+++ b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/Root.class
Binary files differ
diff --git a/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/Root.java b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/Root.java
new file mode 100644
index 0000000..ebe927e
--- /dev/null
+++ b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/Root.java
@@ -0,0 +1,37 @@
+package hudson.plugins.ui_samples;
+
+import hudson.Extension;
+import hudson.model.RootAction;
+
+import java.util.List;
+
+/**
+ * Entry point to all the UI samples.
+ *
+ * @author Kohsuke Kawaguchi
+ */
+@Extension
+public class Root implements RootAction {
+ public String getIconFileName() {
+ return "gear.gif";
+ }
+
+ public String getDisplayName() {
+ return "UI Samples";
+ }
+
+ public String getUrlName() {
+ return "ui-samples";
+ }
+
+ public UISample getDynamic(String name) {
+ for (UISample ui : getAll())
+ if (ui.getUrlName().equals(name))
+ return ui;
+ return null;
+ }
+
+ public List getAll() {
+ return UISample.all();
+ }
+}
diff --git a/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/Root/index.jelly b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/Root/index.jelly
new file mode 100644
index 0000000..77b85d5
--- /dev/null
+++ b/work/plugins/ui-samples-plugin/WEB-INF/classes/hudson/plugins/ui_samples/Root/index.jelly
@@ -0,0 +1,43 @@
+
+
+
+
+
+